<!--
	function WinCenter(wfile, wname, ww, wh) {
		var maxwidth, maxheight;
		var xpos, ypos;
		
		maxwidth 	= screen.availWidth;
		maxheight	= screen.availHeight;
		xpos = maxwidth/2 - ww/2;
		ypos = maxheight/2 - wh/2 -20;
		
		return open(wfile, wname,"left="+xpos +",top="+ypos +",width="+ww +",height="+wh +",resizable=1,scrollbars=1,menubar=no, location=no");
	}
	function PrivacyPolicy(lang)
	{
		WinCenter("privacypolicy.htm","PrivacyPolicy",370,400);
	}
	function TermsOfService(lang)
	{
		WinCenter("termsofservice.htm","TermsOfService",370,400);
	}
	function SearchTips()
	{
		WinCenter("searchtips.htm","SearchTips",370,400);
	}
-->