function parentWindowOLD( URL ){
	if( window.opener ){
		window.opener.location.href( URL );
	}
	return false;
}
function parentWindow(theURL){
	if(self.opener){
		self.opener.location.href = theURL;
		self.focus();
		self.close();
	}else{
		location.href = theURL;
	}
}
function ibdbParentWindow(theURL){
	if(self.opener){
		self.opener.location.href = theURL;
		self.focus();
		self.close();
	}else{
		location.href = theURL;
	}
}
