// JavaScript Document
// @author Patrick Valle
// @version 3.15.06


		//new window script
		var width, height
		
		function load(url, w,h) {
			width = "width=" + w + ",";
			height = "height=" + h + ",";
			xcoord = "left=" + ((screen.width-w)/2) + ",";
			ycoord = "top=" + ((screen.height-h)/2) + ",";
			
			OpenWindow = window.open (url, "newwindow", config=(width + height + xcoord + ycoord + "toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no"))
		}