    // javascript library
<!-- hide JavaScript from non-JavaScript browsers
//
// JavaScript library
// live 20th april, 2002
// see http://www.theblisspages.com/ for more information
//
//
// ------------------------------------------------------
var wt=0, ht, w1;

function cleanUp()
{if (wt!=0) { if (!(w1.closed)) {w1.close();}}
}
function js_image(urloc, wdth, hght) 
{
	var sl;
        cleanUp();
	if (wt!=wdth || ht!=hght) {wt=wdth; ht=hght;}

	if (hght>700)
	{sl="scrollbars=yes,width="+(wdth+40).toString()+",height=720";}
	else
	{sl="scrollbars=no,width="+(wdth+16).toString()+",height="+(hght+40).toString();}

        w1=window.open("about:blank","family",sl);
	var locdoc = w1.document;
	locdoc.open("text/html");
	if (urloc.charAt((urloc.length-1))=="l")
	{ locdoc.location = urloc;}
	else 
	{ locdoc.write('<head><title>Picture: '+urloc+'</title></head><body topmargin="8" leftmargin="8" bottommargin="16" bgcolor="white"><img src="'+urloc+'" alt="close window to return"/><br /><a href="" align="middle" onclick="window.close()" >click to close</a></body>');
	}
	locdoc.close();

	w1.moveTo(0,0);
	w1.focus();
	}
// ----------------------------------------------------
function writ()
{
window.document.writeln('testing');
window.document.writeln('<a href="javascript:js_image(\'images/balloon-inside013.jpg\',364,351)">');
window.document.writeln('<img src="images/balloon-inside013_sm.jpg" width="200" height="150" style="float:left;clear:left" alt="inside the balloon (look out for Mike in the middle!)"></a>');

}

// ----------------------------------------------------

// ----------------------------------------------------