function MWCtrl(URL){
	if(opener.closed){
		NewWin=window.open("","mainwindow");
		NewWin.location.href=URL;
	}
	else{opener.location.href=URL;}
}
