
//»õÃ¢¿­±â
function ViewImg(img, w, h) {
	
	var scroll=0;
	if (w>800)
	{
		w=800;
		scroll=1;

	}

	if (h>600)
	{
		h=600;
		scroll=1;
	}

	var theURL='ViewImg.php?imgsrc=' + img;
	var sStatus='toolbar=no, titlebar=no, location=no, status=no, menubar=no, scrollbars='+scroll+', resizable=yes,width='+w+',height='+h+',top=0,left=0';
	window.open(theURL, '', sStatus);
}

function goHome() {
	location.href='mall.php';
}

function goMenu(menu_num){
	var url='mall.php';	
	switch (menu_num)
	{
		case 1 :
			url += "?mode=company&cd=000101";
			break;
		case 2 :
			url += "?mode=list&cd=000002";
			break;
		case 3 :
			url += "?mode=list&cd=010104";
			break;
		case 4 :
			url += "?mode=list&cd=000111";
			break;
		case 5 :
			url += "?mode=quest&cd=000421";
			break;
		default:
			
	}
	location.href=url;
	//location.replace(url);
}