
<!--
function marketease_js_PopWin(url,name,options){
var ContextWindow = window.open(url,name,options);
ContextWindow.opener = this;
ContextWindow.focus();
}
function marketease_js_RefreshOriginalWindow(url) {
if ((window.opener == null) || (window.opener.closed))
{
var OriginalWindow = window.open(url);
OriginalWindow.opener = this;
}
else{
window.opener.location=url;
}
}
//-->
