function isDemand(Buy_Type)
{
	Buy_Type=parseInt(Buy_Type);
	var b=false;
	if(Buy_Type==2||Buy_Type==5)
	{
		b=true;
	}
	return b;
}

function getUser2Domain(Username,Att)
{
	return "/CN/WebSite/"+Username+".html";
}

function Change_Check_Value(obj1,obj2)
{
	try
	{
		obj2.value=obj2.value+"|"+obj1.value;
		obj1.value="";
	}catch(e){}
}

function getProductUrl(Buy_Type,ProductID)
{
	var Url="/CN/ProductInfo/"+Buy_Type+"/"+ProductID+".html";
	return Url;
}