function DisplayWin(ShipName)	// Pop up window, ship name as input
{
   
   if(window.name != 'ships')
      win = window.open('','ships','toolbar=yes, resizable=1,status=yes,width=470,height=430,scrollbars=yes');

   win.document.open();		// Open for new document creation
   win.document.write("<HTML>");
   win.document.write("<HEAD>");
   win.document.write("<TITLE>"+ShipName);
   win.document.write("<\/TITLE>");
   win.document.write("<CENTER><H1>"+ShipName+"<\/H1><\/CENTER>");
   win.document.write("<\/HEAD>");
   win.document.write("<BODY background=\"bg-4.gif\" bgcolor=\"gray\">");
   win.document.write("<PRE>");
   win.document.write("<IMG SRC="+ShipName+".jpg><BR>");
   win.document.write("<\/BODY>");
   win.document.write("<\/HTML>");

   win.document.close();	// Close the document, leave the window open
   win.focus();			// put the window in the foreground
};					// End pop-up function

