function popup(host, imgname, width, height ) {
	
//pImage = new Image();
//pImage.src = host + "images/data/" + imgname;

win = window.open( "", "", 
	"resizable=no,status=no,menubar=no,location=no,toolbar=no,directories=no,scrollbars=yes,width=" + width + ",height=" + ( parseInt(height) + parseInt( 20 ) ) )
win.document.writeln( "<html><body style=\"margin:0;\" spacing=\"0\"><img style=\"margin:0;padding:0;border-style:none;\" src=\"" + host + "_images/data/" + imgname + "\"><br><center>[<a href='javascript:self.close()'>close</a>]</body></html>" );
}
function fullpop( shipid, poptype ) {
	
win = window.open( "ship.php5?id=" + shipid + "&poptype=" + poptype, "", "resizable=yes,status=no,menubar=no,location=no,toolbar=no,directories=no,scrollbars=yes" );
}