// standard window openers

// used for new window
function openResWindow(URL) 
	{
	window.open(URL, "new_window", "toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, width=770, height=405, left=10, top=0, screenx=10, screeny=0");
	}

// used for pop ups  
function openPopWindow(URL, WinHeight)
	{
	if(arguments.length < 2)
		{
		WinHeight = 365;
		}
	window.open(URL, "new_window", "toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=690, height=" + WinHeight + ", left=10, top=0, screenx=10, screeny=0");
	}
  
// used for Help pop ups  
function createHelpWindow(window_name)
	{
	window.open("", window_name, "toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=726, height=450, left=10, top=10, screenx=10, screeny=10");
	}