<!--
function WindowShow(ImageName,WinName, IWidth, IHeight ) 
	{ 
    	WWidth=IWidth+50;
	WHeight=IHeight+60;
	msgWindow=window.open('',WinName,'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes, scrollbars=yes,width='+WWidth+',height='+WHeight);
	msgWindow.document.open();
	msgWindow.document.bgColor="ECECEC";
	msgWindow.document.write ('<BODY TEXT="#000000" BACKGROUND="images/bgsnow.gif" LINK="#0000EE" VLINK="#551A8B" ALINK="#FF0000"><IMG SRC="'+ImageName+'" BORDER=2><BR><BR><A HREF="javascript:window.close()"><CENTER><IMG SRC="images/close.gif" ALT="Close window" WIDTH=127 HEIGHT=24 BORDER=0></CENTER></A></BODY>');
	msgWindow.document.close();
 	} 


function HREFWindowShow(ImageName, WinName, IWidth, IHeight, HREFtext)
	{
	document.write('<A HREF="javascript:WindowShow(');
	document.write("'"+ImageName+"'"+", '");
	document.write(WinName);
	document.write("',"+IWidth+", "+IHeight+" )");
	document.write('">'+HREFtext+'</A>');
	} 

function MUSEUMShow(ImageName, TImageName, WinName, IWidth, IHeight, ALTtext)
	{
	document.write('<A HREF="javascript:WindowShow(');
	document.write("'"+ImageName+"'"+", '");
	document.write(WinName);
	document.write("',"+IWidth+", "+IHeight+" )");
	document.write('">'+'<IMG SRC="'+TImageName+'" ALT="'+ALTtext);
	document.write('" WIDTH=97 HEIGHT=121 BORDER=0></A>');
	} 
//-->
