/* 
===============================================================================
CREATED BY:     Jamie Peloquin <http://www.jamiepeloquin.com>
JS VERSIONS:    1.5+
===============================================================================
*/

/* @CONTROLS */

// @SubmitForm
function form_submit($FORM) {
	document.getElementById($FORM).submit();
}
// @end

/* @END */



/* @WINDOWS */

// @DefaultPopupWIndow
function popWindowDefault(wURL){
    var WD = 800;
    var HT = 600;
	var halfW = (WD/2)
 	var halfH = (HT/2)
   	var screenW = screen.availWidth
    var screenH = screen.availHeight
    
    var screenX = ((screenW / 2) - halfW) // is half the width of the window
    var screenY = ((screenH / 2) - halfH) // is half the height of the window
	
	if(document.layers){ //Fixes Netscape 4 bug
    	var popWin = window.open(wURL, 'popWinW');
	}
	else{
		var popWin = window.open(wURL, 'popWinW, width='+WD+', height='+HT+', top='+screenY+', left='+screenX+', toolbar=yes, location=yes, menubar=yes, scrollbars=yes, status=yes, resizable=yes');
    }
    popWin.focus();
}
// @end

/* @END */

