<!-- Original:  Ronnie T. Moore, Editor -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function Start(URL, WIDTH, HEIGHT, DESCRIP) {
windowprops = "scrollbars=yes,resizable=yes,left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+130);

text = "<html><head><title>";

text += "Happy Camp -";

text +=  "</title></head><body bgcolor='#ffffff' text='#000000'";

text += "><center><a href='javascript:window.close();'><img border='0' src='" + URL + "'></a>";

text += "<br><p><b>   <table width='" + WIDTH + "' border='1' cellpadding='5'>";

text += "<tr bgcolor='#ffffff'><td><font color='#000000' face='Helvetica,Arial,sans-serif'><center><font size='+1'>" + DESCRIP + "</font></b></p><br>";

text += "<font size='-1'>Click on the photo to close this window</font><br>";

text += "<b>Copyright &copy; 2007 Happy Camp BRC</b></center>";

text += "</font></td></tr></table>";

text += "<script type='text/javascript' language='JavaScript' src='js/norightclick.js'></script>";

text +="</body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

