

function openWindow(url,name, width, height)  {

			var page = url;

		var windowprops = "height=" + height + ",width="+width+",location=0,screenX=300,screenY=300,scrollbars=yes,menubars=no,toolbars=no,resizable=yes";

	        

			window.open(page, "Popup", windowprops);

	}
