if (window != top)
{
top.location.href = location.href;
}

function popup(url, popupName, popWidth, popHeight)
{
window.open(url,popupName,"scrollbars=yes,menubar=no,toolbar=no,status=no,width="+popWidth+",height="+popHeight+",resizable=yes");
}


function popup1(url, popupName, popWidth, popHeight)
{
window.open(url,popupName,"scrollbars=yes,menubar=yes,toolbar=yes,status=no,width="+popWidth+",height="+popHeight+",resizable=yes");
}

function popupNB(url, popupName, popWidth, popHeight)
{
window.open(url,popupName,"scrollbars=no,menubar=no,toolbar=no,status=no,width="+popWidth+",height="+popHeight+",resizable=yes");
}

function visibleBox(id,skipOpenClose) {
	elm1 = document.getElementById("open"+id);
	elm2 = document.getElementById("close"+id);
	elm3 = document.getElementById("box"+id);

	if(!elm3)
		return false;

	if (skipOpenClose) {
		elm3.style.display = (elm3.style.display == "")?"none":"";
	} else if(elm1) {
		if (elm1.style.display == "") {
			elm1.style.display = "none";
			if(elm2)
				elm2.style.display = "";
			elm3.style.display = "none";
		} else {
			elm1.style.display = "";
			if(elm2)
				elm2.style.display = "none";
			elm3.style.display = "";
		}
	}
}
