/**************************************************************************
*						¸Þ´º°ü·Ã ¸µÅ© ¹× Location °ü·Ã
**************************************************************************/

var menuArr = new Array();	
var m = 0;


// Home
menuArr[m++] = new Array('01', 'HOME','../index.html', '');


// 01_products
menuArr[m++] = new Array('02', 'PRODUCTS','../01_products/products_01.html', '');

menuArr[m++] = new Array('0201', 'PACSPLUS Viewer','../01_products/products_01.html', '');
menuArr[m++] = new Array('0202', 'PACSPLUS Server','../01_products/products_06.html', '');
menuArr[m++] = new Array('0203', 'Mammo','../01_products/products_08.html', '');
menuArr[m++] = new Array('0204', 'Dicom Gateway','../01_products/products_10.html', '');
menuArr[m++] = new Array('0205', 'EMR I/F','../01_products/products_15.html', '');
menuArr[m++] = new Array('0206', 'Digitizer','../01_products/products_17.html', '');


// 02_solution
menuArr[m++] = new Array('03', 'SOLUTION','../02_solution/sulotion_01.html', '');

menuArr[m++] = new Array('0301', 'FULL PACS','../02_solution/sulotion_01.html', '');
menuArr[m++] = new Array('0302', 'Radiology Department','../02_solution/sulotion_02.html', '');
menuArr[m++] = new Array('0303', 'Clinical facility','../02_solution/sulotion_03.html', '');
menuArr[m++] = new Array('0304', 'Mammography Center','../02_solution/sulotion_04.html', '');
menuArr[m++] = new Array('0305', 'Ophthalmology PACS','../02_solution/sulotion_05.html', '');
menuArr[m++] = new Array('0306', 'Screening Center PACS','../02_solution/sulotion_06.html', '');


// 03_about us
menuArr[m++] = new Array('04', 'ABOUT US','../03_about_us/about_us_01.html', '');

menuArr[m++] = new Array('0401', 'Corporate profile','../03_about_us/about_us_01.html', '');
menuArr[m++] = new Array('0402', 'Certification','../03_about_us/about_us_02.html', '');
menuArr[m++] = new Array('0403', 'Corporate partners','../03_about_us/about_us_03.html', '');
menuArr[m++] = new Array('0404', 'Contact us','../03_about_us/about_us_04.html', '');


// 04_support
menuArr[m++] = new Array('05', 'FREE DEMO','../04_support/support_01.html', '');

menuArr[m++] = new Array('0501', 'FREE DEMO','../04_support/support_01.html', '');
menuArr[m++] = new Array('0502', 'PPClinic Adv Page','../04_support/support_02.html', '');


// 05_community
menuArr[m++] = new Array('06', 'COMMUNITY','../05_community/community_01.html', '');


/**************************************************************************
*	¸Þ´º ¸µÅ©
**************************************************************************/
function menuLink(str)
{
	for (i=0; i<str.length; i=i+2)
	{
		for (j=0; j<menuArr.length; j++)
		{
			if (str==menuArr[j][0]) 
			{
				if(menuArr[j][2]=="#")
				{
					alert("ÁØºñÁßÀÔ´Ï´Ù.")
					return;
				}
				else
				{
					window.location.href=menuArr[j][3] + menuArr[j][2];
					break;
				}
			}
		}
	}
} 

function login()
{
	document.loginForm.submit();
}



/* ±âº» */
function Load_Flash( Url, Width, Height, Align ) {
	document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + Width + "\" height=\"" + Height + "\">");
	document.writeln("<param name=\"movie\" value=\"" + Url + "\">");
	document.writeln("<param name=\"quality\" value=\"high\" />");
	document.writeln("<param name=\"menu\" value=\"false\" />");
	document.writeln("<param name=\"wmode\" value=\"transparent\">");
	document.writeln("<embed src=\"" + Url + "\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  allowScriptAccess=\"sameDomain\"  align=\""+ Align +"\"  width=\"" + Width + "\"  height=\"" + Height + "\">");
	document.writeln("</embed></object>");
}