
	selection = new Array(10)
			selection[0]= " "
			selection[1]= "mn-rs-9255-115.htm"
			selection[2]= "mn-ol-0112-115.htm"
			selection[3]= "mn-ol-0117-215.htm"
			selection[4]= "mn-ol-0134-315.htm"
			selection[5]= "mn-ol-0137-415.htm"
			selection[6]= "mn-ol-0138-515.htm"
			selection[7]= "mn-ol-0140-615.htm"
			selection[8]= "mn-ol-0144-715.htm"
			selection[9]= "mn-ol-0146-815.htm"
			

	function go(){


		Selec=document.forms[0].elements[0].selectedIndex; 

		if(Selec == 0){
			window.alert("Please select Batch No.");
			}
		else{
			window.open(selection[Selec],"subpage","toolbox=0,scrollbars=1,resizable=0,width=500,height=400,top=10,left=10");
			}

}



