// launchNewWin Javascript

function launchNewWin(myLoc, myName, myWidth, myHeight)
		{
				var myFeatures = "directories=no,dependent=no,width=" + myWidth + ",height=" + myHeight + ",hotkeys=no,location=no,menubar=yes,resizable=yes,screenX=100,screenY=100,scrollbars=yes,titlebar=no,toolbar=no,status=no";
				var newWin = window.open(myLoc, myName, myFeatures);
		}