/* 

#####################################################

Javascripts for www.gatewaylifechurch.com

FileName:   site.js
Author:	    Eric Falkner
Pub Date:   10.31.07

#####################################################

*/
function ccard_pop() {
	window.open('http://www.gatewaylifechurch.com/connect_card.php','','toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=500,width=800,left=0,top=0,');
}

function pcard_pop() {
	window.open('http://www.gatewaylifechurch.com/prayer_card.php','','toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=500,width=800,left=0,top=0,');
}

function gen_pop(h,w,tb,mb,sb,loc) {
    var settings = 'height=' + h + ',';
    settings += 'width=' + w + ',';
    settings += 'toolbar=' + tb + ',';
    settings += 'menubar=' + mb + ',';
    settings += 'scrollbars=' + sb + ',';
    settings += 'location=' + loc + ',';
	settings += 'directories=no,status=yes,resizable=yes,left=0,top=0,';
	window.open('','popup_win',settings)
}

menu_status = new Array();function showHide(smname,theidnum){
    theid = smname + theidnum;
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);        if(menu_status[theid] != 'show') {           switch_id.className = 'show';           menu_status[theid] = 'show';        } else {           switch_id.className = 'hide';           menu_status[theid] = 'hide';        }
        for(var i=1; i < 6; i++) {
	   if(i != theidnum) {
	      theid = smname + i;
    	      var switch_id = document.getElementById(theid);              switch_id.className = 'hide';              menu_status[theid] = 'hide';
	   }
        }
    }}
