<!-- hiding javascript code from old browsersfunction launchProjector(path,title,width,height) {	var url = "projector.php5?path=" + path + "&title=" + title;	var scrx = (screen.width/2)-width/2;	var scry = (screen.height/2)-height/2;	var windowprops = 		"location=no, scrollbars=no, menubars=no, toolbars=no, resizable=no," +		"screenX=" + scrx + ", screenY=" + scry + ", width=" + width + ", height=" + height;	popup = window.open(url,"projector",windowprops);	if (!popup)		alert('In order to view this internal Website\nyou need to disable your popup blocker!');	if (navigator.appName != "Netscape")		popup.moveTo(scrx,scry);	popup.focus();}// -->