//announcements popwindow

function popWindow1(the_url)
{
    var popWindowHeight = 230;
    var popWindowWidth = 300;
    var new_window = window.open(the_url, new_window, "height="+popWindowHeight+",width="+popWindowWidth+",scrollbars=yes,resizable=no");
	new_window.moveTo((screen.width/2)-(popWindowWidth/2),(screen.height/2)-(popWindowHeight/2));
	new_window.focus();
}

//tour popwindow

function openHelpWindow(theURL) {
  helpwindow=window.open(theURL,'jasm','menubar=no,width=781,height=581');
  helpwindow.focus();
}

//discipleguide popwindow

function openDiscipleGuideWindow(theURL) {
  helpwindow=window.open(theURL,'discipleguide','menubar=no,width=982,height=602');
  helpwindow.focus();
}
