<!-- this script was written by Verania
function getjpg(image, iwidth, iheight)
{
	image = image + ".jpg";
	var loc = "pictures/";
	var settings = "'resizable=no,status=yes,scrollbars=no,width="+(iwidth+20)+",height="+(iheight+80)+"'";
	newWin = window.open("","pic",settings)
	newWin.document.writeln("<html><head><title>Picture Gallery</title></head>")
	newWin.document.writeln("<body bgcolor=\"#101f24\" leftmargin=10 topmargin=10 rightmargin=10><div align=center>")
	newWin.document.writeln("<img src="+loc+image+" width="+iwidth+" height="+iheight+">")
	newWin.document.writeln("<form><input type=button value='Close Window' onClick=window.close()></form>")
	newWin.document.writeln("</div></body></html><noscript>")
}

function openLink(image,iwidth,iheight)
{
	var newWin = null
	var settings = "'resizable=no,status=yes,scrollbars=no,width="+(iwidth+20)+",height="+(iheight+20)+"'";
	newWin = window.open("","pic",settings)
}
// -->
