<!-- hide this stuff from other browsers 

//open big image in own window
function OpenImageInWindow(URL, WIDTH, HEIGHT, WindowName) 
{
windowprops = "left=0,top=0,width=" + (WIDTH+22) + ",height=" + (HEIGHT+130);
text = "<html><head><title>MasCam Photography</title>";
text += "</head><body bgcolor='#101010' alink='#FFD353' vlink='#FFD353' link='#FFD353' text='#FFD353'";
text += "><img src='" + URL + "' border=0 width='" + WIDTH +"' height='" + HEIGHT + "' alt='Loading'>";
text += "<br><p align='center'>";
text += "<A href='javascript:window.close();' class='goldlink'><b>CLOSE</b></a>";
text += "<br><br><font size='2'>Please note: Image resolution has been optimised for on-screen viewing!</font><br>&nbsp;"
text += "</p></body></html>";
preview = window.open("", WindowName, windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

//load form selection onChange.
function load(formName) {
	var list = document[formName].list;
	var str = list.options[list.selectedIndex].value;
	if (str != "") window.location.href = str;
}


// this script handles the Netscape 4 bug on CSS layers.
if(document.layers){origWidth=innerWidth;origHeight=innerHeight;onresize=function(){ 
if(innerWidth!=origWidth||innerHeight!=origHeight)location.reload()}} 


// end hiding javascript -->