// JavaScript Document
var newwindow;

function popitup(url , title) {
if (newwindow && !newwindow.closed)
{ newwindow.focus(); newwindow.document.clear() }
else
{ newwindow=window.open('','','width=505,height=505,resizable=1') }
newwindow.document.writeln('<html><head><title>' + title + '</title> </head><body bgcolor="#666666" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><div style="backgroundcolor:#666666;text-align:center;float:center;margin-top: 0px;margin-right: auto;margin-bottom: 0px;margin-left: auto;width:505px;">');
newwindow.document.writeln('<img src=' + url + '></div>');
newwindow.document.writeln('</body> </html>');
newwindow.document.close();
}

function tidy()
{
if (newwindow && !newwindow.closed) { newwindow.close(); }
}

function homeTabOn (tab)	{
	document.getElementById(tab).style.backgroundColor="#5B7B30";
}

function homeTabOff (tab)	{
	document.getElementById(tab).style.backgroundColor="#838383";
}