<!--
function launchWindow(url,name,features){
	launchWin = window.open(url,name,features);
	launchwin.focus();
}

function picWindow(image,caption,width,height) {
	// Start writing window contents.
    pic = window.open("","historypic","width=" + width + ",height=" + height + ",toolbar=0,menubar=0,location=0,scrollbars=0,resizable=0");
	pic.resizeTo((parseInt(width) + 12),(parseInt(height) + 70));
    pic.document.open();
    pic.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"> \n");
    pic.document.write("<html> \n");
    pic.document.write("<head> \n");
    pic.document.write("<title>Continental Battery - Our History</title> \n");
    pic.document.write(" \n");
    pic.document.write("<style type=\"text/css\"> \n");
	pic.document.write("<!-- \n");
	pic.document.write("	body	{margin: 0px; background-color: #000000} \n");
	pic.document.write(" \n");
	pic.document.write("	p		{font-size: 9pt; font-family: Arial, Helvetica, SansSerif; \n");
	pic.document.write("			color: #FFFFFF; margin: 5px} \n");
	pic.document.write(" \n");
    pic.document.write("	table {border-bottom-style: none; \n");
    pic.document.write("			background-color: #000000;} \n");
	pic.document.write("--> \n");
	pic.document.write("</style> \n");
	pic.document.write(" \n");
    pic.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"> \n");
	pic.document.write("</head> \n");
	pic.document.write(" \n");
	pic.document.write("<body> \n");
	pic.document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> \n");
    pic.document.write("  <tr> \n");
    pic.document.write("    <td valign=\"top\" width=\"" + width + "\" height=\"" + height + "\"><div align=\"center\"><img src=\"" + image + "\" alt=\"" + caption + "\"></div></td> \n");
    pic.document.write("  </tr> \n");
    pic.document.write("</table> \n");
    pic.document.write("<div align=\"center\"> \n");
	pic.document.write("  <p>" + caption + "</p> \n");
	pic.document.write("  <a href=\"javascript:void(0);\" onclick=\"window.close();\"><img src=\"images/close.gif\" width=\"68\" height=\"16\" border=\"0\"></a> \n");
	pic.document.write("</div> \n");
	pic.document.write("</body> \n");
	pic.document.write("</html> \n");	
	pic.focus();
	pic.document.close()
}
-->