/* Function for loading http's into seperate window
Example call
<A HREF="#" 
 ONCLICK="formHandlerButton(this.form,
 'http://bible.gospelcom.net/bible?version=NASB&search=&passage=Matthew+9:37-38*.')"> 
 (Matthew 9:37-38)</A>
*/

function formHandlerButton(form, URL)
 {
 var llwidth = screen.width-100;
 var llheight = screen.height-100;
 popup = window.open(URL, "MenuPopup", "width=" + llwidth + ",height=500,scrollbars=yes,resizable=yes,menubar=yes,toolbar=yes,left=10");
 }

