<!--
//'''''''''''''''''''''''''''''''''''''''''''''''''
//Author:	JoshuaChen
//Date:		2004/04/14
//Modify:	
//'''''''''''''''''''''''''''''''''''''''''''''''''

//********************************************
//Description:		Expand Menu, change element's style.
//Parameters:	
//Author:			Joshua Chen
//Date:			2004/04/14
//Input:			Item Number
//Output:			
//********************************************

function getExpand(item)
{
	obj = document.getElementById(item);
	visible = (obj.style.display != "none");
	key = document.getElementById("x" + item);

	if (visible)
	{
		obj.style.display = "none";
 		key.style.fontWeight = "normal";
	}
	else
	{
		obj.style.display = "block";
		key.style.fontWeight = "bold";
	}
}

//********************************************
//Description:		popwindow get url.
//Parameters:	
//Author:			Joshua Chen
//Date:			2004/04/15
//Input:			url address
//Output:			
//********************************************

function faqPopupPage(strUrl,intWidth,intHeight)
{
	if (intWidth == '')
	{
		intWidth = 530;
	}
	if (intHeight == '')
	{
		intHeight = 500;
	}
	var windowprops = 'location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=yes'
	 +	',left=50,top=50,width='+ intWidth +',height='+ intHeight;
	popup = window.open(strUrl,"WarrantiesPolicies",windowprops);
}
//-->
