var mypopup;
function callPopupRelocate(URL,PARAMS) {
	try {
		mypopup = window.open(URL, "mypopup", PARAMS);
		self.focus();
		if ( !mypopup || typeof(mypopup) != 'object' || mypopup.closed ) {
			throw "notopen"; 
		}
	} catch(e) {
		if ( e == "notopen" ) {
			var ifstr = "<br /><iframe src='"+ URL + "' width='780' height='1400' frameborder='0' border='0' scrolling='no'></iframe>";
			with(document) {
				open();
				write(ifstr);
				close();
			}
		}
	}
}
