var g_is_ie = false;
function gotoUrlIE(url)
{
    if (g_is_ie) {
        gotoUrl(url);
    }
}
function openNewsletter() {
	if (Newsletter.radNewsletter[0].checked) { document.URL = 'newsletter.php?Action=Start&Email='+Newsletter.Email.value; }
	if (Newsletter.radNewsletter[1].checked) { document.URL = 'newsletter.php?Action=End&Email='+Newsletter.Email.value; }
}
function changeVisibility(Ident) {
	if (eval('objDiv'+Ident).className=="objHidden") {
		eval('objDiv'+Ident).className = "objVisible";
	} else {
		eval('objDiv'+Ident).className = "objHidden";
	}
}
function changeMenueSub(Ident) {
	if (eval('MenueSub'+Ident).className=="divHidden") {
		eval('MenueSub'+Ident).className = "divVisible";
	} else {
		eval('MenueSub'+Ident).className = "divHidden";
	}
}
function PW_popWindow(URL,Width,Height) {
	var intWidth,intHeight,intLeft,intTop;
	intWidth  = Width;
	intHeight = Height;
	intLeft   = (screen.width / 2) - (intWidth / 2);
	intTop    = (screen.height / 2) - (intHeight / 2);
	window.open(URL,'newWindow','scrollbars=yes,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}

