function NewWindow(myURL)
	{
	  strFeatures = "menubar=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,top=50,left=50,width=700,height=350";
	  objNewWindow = window.open(myURL, "AdjunctWindow", strFeatures);
	  objNewWindow.focus();
	}
	
function PictureWindow(myURL)
	{
	  strFeatures = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,top=50,left=50,width=820,height=560";
	  objNewWindow = window.open(myURL, "AdjunctWindow", strFeatures);
	  objNewWindow.focus();
	}
	
function SpeechWindow(myURL)
	{
	  strFeatures = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,top=50,left=50,width=800,height=500";
	  objNewWindow = window.open(myURL, "AdjunctWindow", strFeatures);
	  objNewWindow.focus();
	}
	
function VideoWindow(myURL)
	{
	  strFeatures = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,top=50,left=50,width=300,height=240";
	  objNewWindow = window.open(myURL, "AdjunctWindow", strFeatures);
	  objNewWindow.focus();
	}	
	
function OpenParkingWindow(myURL) 
	{
	  strFeatures = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,top=50,left=50,width=650,height=550";
	  objNewWindow = window.open(myURL, "AdjunctWindow", strFeatures);
	  objNewWindow.focus();
}