
function openPassage( winName, book, verses ) {

	var url = "http://bible.gospelcom.net/bible?version=NIV&showfn=on&language=english&interface=print";
	var args = "width=700,height=480,resizable=yes,scrollbars=yes,status=0";
	var remote = null;

	// build the url
	url = url + "&passage=" + book + "+" + verses;

	// open the window
	window.open(url,winName,args);

}

