/**
 * $Id: cstone_bible_reading.js 519 2008-05-11 05:07:18Z carl $
 *
 * Javascript for cstone_bible_reading module
 */

function cstone_launch_bible_popup(ref) {
    if (window["cstoneBiblePopup"] && !window["cstoneBiblePopup"].closed) {
	window["cstoneBiblePopup"].focus();
	window["cstoneBiblePopup"].location.href = "http://www.biblegateway.com/passage/index.php?version=31&interface=print&search=" + ref;
    }
    else {
	window["cstoneBiblePopup"] = open("http://www.biblegateway.com/passage/index.php?version=31&interface=print&search=" + ref,
			                    "cstoneBiblePopup", "width=800,height=600,resizable=yes,scrollbars=yes");
    }
}

function cstone_launch_soapy_popup(url) {
    if (window["cstoneAboutSOAPYPopup"] && !window["cstoneAboutSOAPYPopup"].closed) {
	window["cstoneAboutSOAPYPopup"].focus();
    }
    else {
	window["cstoneAboutSOAPYPopup"] =
            open(url, "cstoneAboutSOAPYPopup", "width=455,height=600,resizable=yes,scrollbars=yes");
    }
}
