function openFaq(url,sname,swidth,sheight,sreplace,sclose)
{
	var objNewWin;				
	if (swidth=="") swidth = "410";
	if (sheight=="") sheight = "320";
	if (sreplace=="") sreplace = false;
	if (sclose=="") sclose = false;
	objNewWin = window.open(url,sname,"fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + swidth + ",height=" + sheight + ",top=100,left=100",sreplace);	
	if (sclose) window.close();
	objNewWin.focus();	
}
