<!-- Hiding script from old browsers **************************************************
var version = 0;

// ************ microsoft explorer (4.x)
if (document.all) {
		layerRef='document.all'
		styleRef='.style.'
		version=4		}
// ************* netscape (4.x)
else if (document.layers) {
		layerRef='document.layers'
		styleRef='.'
		version=4		} 

function show(n)
{
    eval(layerRef+'["'+n+'"]'+styleRef+'visibility="visible"')
}

function hide(n)
{
    eval(layerRef+'["'+n+'"]'+styleRef+'visibility="hidden"')
}

function ZoomPhoto(n)
{
    	window.open(n, "Preview","toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=0,resizable=0,copyhistory=0,top=50,left=10,width=770,height=400");
}
