function openFaq(framewidth)
{
	if(BrowserDetect.browser == "Explorer")
	{
		window.open("faq.php", "", "left=0, top=0, width="+framewidth+", " 
		+ "height=500, location=no, menubar=no, resizable=yes, " 
		+ "scrollbars=yes, status=no, titlebar=no, toolbar=no");
	}
	else
	{
		window.open("faq.php", "", "left=0, top=0, width="+framewidth+", " 
		+ "height=500, location=yes, menubar=no, resizable=yes, " 
		+ "scrollbars=yes, status=no, titlebar=no, toolbar=no");
	}

}
