<!-- 
function DynaWin(url, t, w, h) 
	{
	poph = + h + 75
	popw = + w + 38
	disp = window.open("","pop","height=" + poph + ",width=" + popw + ",left=15, top=35, resizable=yes, scrollbars=yes");
	content = '<html>';
	content += '<Title>' + t + '</title>';
	content += '</head>';
	content += '<body onBlur="self.close()">';
	content += '<p align="center"><form><input type="button" value="Close" onClick="self.close();"></form></p>';
	content += '<p align="center"><img src="popups/pictures/' + url + '" height="' + h + '" width="' + w + '"></P>';
	content += '</body></html>';
	disp.document.write(content);
	disp.document.close();
	}


if (document.images)
{
archiveon = new Image();
archiveon.src = "buttons/archiveon.gif";
archiveoff = new Image();
archiveoff.src = "buttons/archiveoff.gif";
homeon = new Image();
homeon.src = "buttons/homeon.gif";
homeoff = new Image();
homeoff.src = "buttons/homeoff.gif";
currenton = new Image();
currenton.src = "buttons/currenton.gif";
currentoff = new Image();
currentoff.src = "buttons/currentoff.gif";
vaulton = new Image();
vaulton.src = "buttons/vaulton.gif";
vaultoff = new Image();
vaultoff.src = "buttons/vaultoff.gif";
mailon = new Image();
mailon.src = "buttons/mailon.gif";
mailoff = new Image();
mailoff.src = "buttons/mailoff.gif";
supporton = new Image();
supporton.src = "buttons/supporton.gif";
supportoff = new Image();
supportoff.src = "buttons/supportoff.gif";
miscon = new Image();
miscon.src = "buttons/miscon.gif";
miscoff = new Image();
miscoff.src = "buttons/miscoff.gif";
}

function imgon(imgname)
{
if (document.images)
	{
	document[imgname].src = eval(imgname + "on.src");
	}
}

function imgoff(imgname)
{
if (document.images)
	{
	document[imgname].src = eval(imgname + "off.src");
	}
}


-->
