// JavaScript Document

<!--
	function showpicture(cd)
	{
	var newwin;			
	newwin=window.open('','', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=yes, directories=0, screenX=0, screenY=0, width=205 height=225');
	newwin.document.writeln("<Html>");
	newwin.document.writeln("<Head><Title>Shimla Enterprises - " + cd +"</title>");
	newwin.document.writeln("<link href=style.css rel=stylesheet type=text/css></head>");
	newwin.document.writeln("<Body leftmargin=0 topmargin=0 ><center>");
	newwin.document.writeln("<img src='images/" + cd + ".jpg' width=200 height=200>");
	newwin.document.writeln("<br><font face=verdana size=2 color=#0033CC>Code: " + cd + "</font>");
	newwin.document.writeln("</center></body>");
	newwin.document.writeln("</html>");
	newwin.document.close();
	newwin.focus();
	};
	
-->
