<!-- 
// Popup Windows
var popup;
function popbrowser(URL){
  if (popup != null && !popup.closed) { 
        popup.close();
  }
	popup=window.open(URL,"newwin","WIDTH=790,HEIGHT=550,resizable=1,scrollbars=1,status=1,toolbar=1,location=0,menubar=1");
}
function popMesage(URL){
  if (popup != null && !popup.closed) { 
        popup.close();
  }
	popup=window.open(URL,"popmsg","WIDTH=500,HEIGHT=270,resizable=0,scrollbars=1,status=0,toolbar=0,location=0,menubar=0");
}
function popPlayer(URL){
  if (popup != null && !popup.closed) { 
        popup.close();
  }
	popup=window.open(URL,"popmsg","WIDTH=400,HEIGHT=200,resizable=0,scrollbars=1,status=0,toolbar=0,location=0,menubar=0");
}
// Random Scripture utils
function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}

function MakeArray() {
this.length = MakeArray.arguments.length
        for (var i = 0; i < this.length; i++)
        this[i + 1] = MakeArray.arguments[i]
}
//-->