
function openWindow(theURL, theName, width, height)
	{
		theWindow = window.open(theURL , ""+theName+"" ,"width=" + width + ",height="+ height + ",toolbar=no,directories=0,menubar=no,status=no,resizable=1,location=0,scrollbars=1,copyhistory=0,alwaysRaised=yes");
		theWindow.title = theName;
		theWindow.focus();
	}
	
