// JavaScript Document

// formWindow opens the URL it is passed in a new window (wW x hH; where W and H are the width and height of the window passed) with NO:
//		toolbar, location, directories, status, menubar, scrollbars, resizable
// It's being used to open "Resource Request" forms
function formWindow(URL,W,H) {
	window.open(URL,"",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + W + ',height=' + H);
}