//////////////////////////////////////////////////////////////////
// JFL WEBSITE - JAVASCRIPT FUNCTIONS' IMPLEMENTATION           //
// WRITTEN BY RAY HO                                            //
// COPYRIGHT (C) 2003-2004 MISSION OF THE SACRED HEART OF JESUS //
// VISIT TYPE-R AT: http://rayho.azn.nu/                        //
//////////////////////////////////////////////////////////////////

// Creates new window based on user-defined URL, window name, and dimensions
function newWindow(url,name,width,height) {
	var windowprops = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
	opengbook = window.open(url, name, windowprops);
}