function OpenNewWindow(myListBox) 
{
	var jumpToHere;
	var winOptions;
	var popUpWindow; 
	
	jumpToHere = myListBox[myListBox.selectedIndex].value;
 	winOptions = "left=0px, top=0px,resizable=yes,menubar=yes,toolbar=yes,width="+screen.width+"px,height="+screen.height+"px";
 	popUpWindow = open(jumpToHere, "MyWindow", winOptions);
 }

