function show(num,xdim,ydim){

carwin=window.open("about:blank","_blank","width="+xdim+",height="+ydim);
carwin.document.write("<html><head><title>Royal Clipper</title><link rel=stylesheet type=\"text/css\" href=\"../style/style.css\"></head><body leftmargin='0' topmargin='0'class='option2'><center>");
carwin.document.write("<img border=\"1\" src=royal-clipper/img/"+num+".jpg></img>");
carwin.document.write("<p><form><input type=button value=\"close window\" onclick='self.close()' class=\"button\"></input></form></p>");
carwin.document.write("</center></body></html>");

}