if (window != top)
{
top.location.href = location.href;
}

function popup(url, popupName, popWidth, popHeight)
{
var browsertype = navigator.userAgent;
if ((browsertype.indexOf("MSIE") == 25) && (navigator.appVersion.indexOf("Mac")
== -1)) {
popHeight = (popHeight + 30);
}
window.open(url,popupName,"scrollbars=yes,menubar=no,toolbar=no,status=no,width="+popWidth+",height="+popHeight+",resizable=no");
}

