function popUp(filename, width, height) { 
	faq_window = window.open( filename, "_blank", "left=0,top=0,width="+ width +",height="+ height +",resizable=0,scrollbars=1,toolbar=0,status=0,location=0,directories=0,menubar=0,fullscreen=0");
	faq_window.focus();
}
function popUp2(filename, scrollbars, width, height) { 
	faq_window = window.open( filename, "_blank", "left=0,top=0,width="+ width +",height="+ height +",resizable=0,scrollbars="+scrollbars+",toolbar=0,status=0,location=0,directories=0,menubar=0,fullscreen=0");
	faq_window.focus();
}