var win = null; 
function openWindow(url) 
{  win = open(url, "", "scrollbars=1,width=800,height=500"); 
   if (win != null && win.opener == null) { win.opener = self; }
} 
function closeWindow() 
{ if (win != null) { win.close(); } 
} 


			function statisticLink(thisForm,shipID){
			
				thisForm.elements['val[shipID]'].value=shipID;
				
				thisForm.target='_self';

				thisForm.submit();
				
			}
