function faq(fileName){
	var w = screen.availWidth;
	var h = screen.availHeight;
	myfile = window.open('','','width='+w+',height='+h+',status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes');
	myfile.moveTo(0,0);
	myfile.location.href = fileName;
	myfile.focus();
}
