// JavaScript Document
<!--
function shopcar(ProductID,Url)
{ 
	var Prourl = Url+"?ProductID="+ProductID;
	var selProdWnd=window.open(Prourl,"new","alwaysRaised=yes,resizable=yes,width=880,height=500,top="+(screen.availHeight-500)/2+",left="+(screen.availWidth-900)/2+",resizable=no,scrollbars=yes,menubar=no");
	if(selProdWnd.opener== null) 
		selProdWnd.opener = self;
		return (false);
}

function RedirectFavorite(ProductID,Url)
{
	var Prourl = Url+"?ProductID="+ProductID;
	var selProdWnd=window.open(Prourl,"new","resizable=yes,width=880,height=500,top="+(screen.availHeight-500)/2+",left="+(screen.availWidth-900)/2+",resizable=no,scrollbars=yes,menubar=no");
	if(selProdWnd.opener== null) 
		selProdWnd.opener = self;
		return (false);
}
			
function LookShopCar()
{
	window.open("ProductShopCar.aspx","new","resizable=no,width=850,height=500,top="+(screen.availHeight-500)/2+",left="+(screen.availWidth-900)/2+",resizable=no,scrollbars=yes,menubar=no");
	return false;
}
function system()
{
	window.open("Board_Info.aspx","sysboard","resizable=yes,width=500,height=300,top="+(screen.availHeight-500)/2+",left="+(screen.availWidth-900)/2+",resizable=no,scrollbars=yes,menubar=no");
}
function ChangeUrl(url)
{
	var selProdWnd=window.open(url,"¹ºÎï³µ","resizable=yes,width=850,height=500,top="+(screen.availHeight-500)/2+",left="+(screen.availWidth-900)/2+",resizable=no,scrollbars=no,menubar=no");
	if(selProdWnd.opener== null) 
	selProdWnd.opener = self;
	return false;
}
//-->	
