<!--
// Copyright information must stay intact
// WinOpen v1.0
// Copyright NavSurf.com 2002, all rights reserved
// For more scripts, visit NavSurf.com at http://navsurf.com

// Set the input argument to true to enable the window feature
function WinWens(url, windowname){
	var windowFeatures;
	windowFeatures = '';
	windowFeatures = "width=500" + "," + "height=1000" + "," + true + "," + true + "," + true + "," + true + "," + true + "," + true

	window.open(url, windowname, windowFeatures);
}

//-->

