// Javascript 1.1 or higher!

function openwin(url,width,height,options)
{	var w = width + 15;
	var h = height + 15;
	var day = new Date();
	var id  = day.getTime();
	if ( navigator.appName != "Netscape" )
	{	h = h + 5;
	}
	eval("page" + id + " = window.open(url,'"+id+"','statusbar=0,resizable,width="+w+",height="+h+options+"');");
}

function stuffimg (imgID, fileID)
{	if ( document.images )
	{	if ( document.images [ imgID ] )
		{	document.images [ imgID ].src = fileID;
		}
	}
}

function zoomImage(filename,title)
{
	window.open('zoomer.asp?imagefile=' + filename + '&title=' + title,'zoomer','width=700,height=555,status=no');
}
