

function OpenVerse(strURL)
{
	strURL = strURL.replace(" ","+");
	strURL = strURL.replace(",","%2C");
	strURL = strURL.replace(";","%3B");
	strURL = strURL.replace("&","%26");
	strURL = "http://bible.gospelcom.net/bible?passage=" + strURL + "&version=niv";
	window.open(strURL,'_bibleref','toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=no,scrollbars=yes,width=600,height=400,resize=yes');
}

function openIt(strURL)
{
	window.open(strURL,'_bibleref','toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=no,scrollbars=yes,width=600,height=400,resize=yes');
}
function openItSz(strURL,x,y)
{
	sProps = 'toolbar=no,location=no,status=no,directories=no,menubar=no,scrolling=no,scrollbars=yes,width=' + x + ',height=' + y + ',resize=no'
	window.open(strURL,'_bibleref',sProps);
}

function em(sname,sdomain)  {
		var mar = [109,97,105,108,116,111];
		var encryptedemail ='';
		for (var i=0; i<mar.length; i++)
 			encryptedemail +=String.fromCharCode(mar[i]);

		strUrl = encryptedemail + ':' + sname + String.fromCharCode(64) + sdomain;
		window.open(strUrl,'_self')
}

