// original scripts copyright (c) 2003 Thomas H. Field

var sHeight;
var sWidth;
function sshow() {
sHeight = 500 + 32;
sWidth = 333 + 24;
if (bname == "Microsoft Internet Explorer") {
	sHeight += 34;
	sWidth += 12;
}
sswin = window.open("","picwin","width=450,height=450,resizable=yes");
setTimeout("update2()",50);
setTimeout("update3()",200);
sswin.focus();
}

function update2() {
sswin.resizeTo(sWidth, sHeight);
}

function update3() {
pagetext  = "<html><head><title>Slide Show - www.PhotoCentric.net</title><script type='text/javascript' src='hs.js'></script></head>";
pagetext += "<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bgcolor='#303030' link='#FFFFFF' vlink='#FFFFFF' alink='#FFFFFF' onLoad='preloadImages();'>";
pagetext += "<center><font color='#FFFFFF' size='1' face='Arial, Helvetica, sans-serif'>Heron Ballet - Photography by Tom Field<br><img alt='www.PhotoCentric.com' src='img/ss1/4409.j";
pagetext += "pg' border=0 GALLERYIMG='no' name='slide0'></a><br><a href='javascript:stopgo()'>STOP / START</a></font></center></body></html>";
sswin.document.open();
sswin.document.write(pagetext);
sswin.document.close();
}

function eradic82() {
  if (sswin != null && sswin.open) sswin.close();
}

// suppress error messages to end user when development finished
function stopError() {
  return true;
}
window.onerror = stopError;
