<!-- // © 2006 blindlinks.cc 	// Make a pop-up window function.	function create_window (image, width, height) {			// Add some pixels to the width and height.		width = width + 25;		height = height + 50;				// If the window is already open, resize it to the new dimensions.		if (window.popup_window && !window.popup_window.closed) {			window.popup_window.resizeTo(width, height);		} 				// Set the window properties.		var window_specs = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes, left=0, top=0, width=" + width + ", height=" + height;				// Set the URL.		var url = "inc/image_window.php?image=" + image;				// Create the pop-up window.		popup_window = window.open(url, "PictureWindow", window_specs);		popup_window.focus();			} 		//--> End of popup function.			<!-- // horizontal menu	navHover = function() {	var lis = document.getElementById("navmenu").getElementsByTagName("LI");	for (var i=0; i<lis.length; i++) {		lis[i].onmouseover=function() {			this.className+=" iehover";		}		lis[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" iehover\\b"), "");		}	}}if (window.attachEvent) window.attachEvent("onload", navHover);	//--> End of horizontal menu			// Make a pop-up window function for linked pages.	function open_page(mypage,myname,w,h,features) {if(screen.width){var winl = (screen.width-w)/2;var wint = (screen.height-h)/2;}else{winl = 0;wint =0;}if (winl < 0) winl = 0;if (wint < 0) wint = 0;var settings = 'height=' + h + ',';settings += 'width=' + w + ',';settings += 'top=' + wint + ',';settings += 'left=' + winl + ',';settings += features;win = window.open(mypage,myname,settings);win.window.focus();}	// Ende pop-up window function for linked pages.
