function OpenMaker(url) {
	if(typeof(MPStaffMakerPopup) == 'undefined' || MPStaffMakerPopup.closed){
		var isIE = navigator.appName.indexOf("Microsoft") != -1;
		if(isIE){
			MPStaffMakerPopupWidth = 940;
		}else{
			MPStaffMakerPopupWidth = 940;
		}
		MPStaffMakerPopup = window.open (url, 'MPStaffMaker', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width='+MPStaffMakerPopupWidth+', height=560, top='+((screen.height/2)-(560/2))+', left='+((screen.width/2)-(MPStaffMakerPopupWidth/2)));
		MPStaffMakerPopup.focus();
	} else {
		MPStaffMakerPopup.focus();
	}
}

