function popUp(myPage, w, h, scroll){
	newWin = window.open(myPage, 'schoolWin', 'width=' + w + ',height='+  h + ',top=30,left=30,scrollbars=' +scroll+ ',location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=yes');
	newWin.focus();
}

function generalPopUp(myPage) {
    popUp(myPage, 405, 540, '1');
}

function emailPopUp(myPage) {
    popUp(myPage, 420, 540, true);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  return false;
}
