<!--

function openWindow(mywidth, myheight, theURL){
	var posX = (screen.width / 2) - (mywidth / 2);
	var posY = (screen.height / 2) - (myheight / 2);
	var rnd = Math.floor(Math.random() * 100000);

	var myWindow2 = window.open(theURL,"newWindow"+rnd,"width=" + mywidth + ",height=" + myheight+",top=" + posY + ",left=" + posX + ",screenX=" + posX + ",screenY=" + posY + ",scrollbars=no,resizable=no");
	if (!myWindow2.opener) myWindow2.opener = self;
}

function redirectMenu(intMenuID) {
	parent.contentframe.location.href = "contentframe.php?menuID=" + intMenuID;
}

//-->