/*

<script src="cpshow.js"></script>
style="Cursor:hand" Onclick="WinOpen('ID','cp\\filename.jpg')

*/
function WinOpen(cptitle,cpname){
	var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes" + ",left=" + 50 + ",top=" + 50 + ",width=" + 800 + ",height=" + 600;
	var splashWin =	window.open('','',windowprops);

	var msg = "<html><body><head><Title>" + cptitle + "</Title></head>\n";
	msg = msg + "<table  border='0' cellspacing='0' cellpadding='0'>\n";
	msg = msg + "  <tr>";
	msg = msg + "    <td width='15' height='15'><img name='cpshow_01' src='images/cpshow_01.jpg' width='15' height='15' border='0' id='cpshow_01' alt='' /></td>";
	msg = msg + "    <td background='images/cpshow_02.jpg'></td>";
	msg = msg + "    <td width='15' height='15'><img name='cpshow_04' src='images/cpshow_04.jpg' width='15' height='15' border='0' id='cpshow_04' alt='' /></td>";
	msg = msg + "  </tr>";
	msg = msg + "  <tr>";
	msg = msg + "    <td background='images/cpshow_05.jpg'></td>";
	msg = msg + "    <td>";
	msg = msg + "<img border='0' src='"+ cpname +"'>";
	msg = msg + "	</td>";
	msg = msg + "    <td background='images/cpshow_07.jpg'></td>";
	msg = msg + "  </tr>";
	msg = msg + "  <tr>";
	msg = msg + "    <td width='15' height='15'><img name='cpshow_10' src='images/cpshow_10.jpg' width='15' height='15' border='0' id='cpshow_10' alt='' /></td>";
	msg = msg + "    <td background='images/cpshow_11.jpg'></td>";
	msg = msg + "    <td width='15' height='15'><img name='cpshow_12' src='images/cpshow_12.jpg' width='15' height='15' border='0' id='cpshow_12' alt='' /></td>";
	msg = msg + "  </tr>";
	msg = msg + "</table>";
	
	msg = msg + "</body></html>";
	
	splashWin.document.open();	
	//splashWin.document.frames.item('iframe1').document.write(msg)
	//splashWin.document.close();
	splashWin.document.write( msg );
	splashWin.focus(); 
}
