<!--
// set global browser identification variables
browser = navigator.appName;
browserNum = parseInt(navigator.appVersion);
N4 = false;
N6 = false;
IE = false;
if ((browser == "Netscape") && (browserNum < 5))
{
// Netscape 4.x
layerRef = "document.layers['";
styleRef = "";
endLayerRef = "']";
N4 = true;
}
else if ((browser == "Netscape") && (browserNum >= 5))
{
//netscape 6
layerRef = "document.getElementById('";
styleRef = ".style";
endLayerRef = "')";
N6 = true;
}
else
{
//Internet Explorer
layerRef = "document.all['";
endLayerRef = "']";
styleRef = ".style";
IE = true;
}
var ns6=document.getElementById&&!document.all
var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
function popUp(URL) {
	day = new Date();
	id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=1,resizable=1,width=525,height=625,left = 0,top = 0');");
}

//-->
