﻿<!--

var NewWindowModal = "directories=0, location=0, menubar=0, resizable=0, scrollbars=1, status=0, toolbar=0, left=5, top=5, ";
var NewWindowResizeable = "directories=0, location=0, menubar=0, resizable=1, scrollbars=1, status=0, toolbar=0, left=5, top=5, ";

// opens a new window with the specified settings
function OpenNewWindow(PageURL, WindowHeight, WindowWidth, WindowDecs, WindowName)
{
	var win_width = WindowHeight;
	var win_height = WindowWidth;
	var win_decs = WindowDecs;
	
	
	if(win_height > (window.screen.height - 25))
	{
		win_height = (window.screen.height - 25);
	}

	if(win_width > (window.screen.width - 25))
	{
		win_width = (window.screen.width - 25);
	}
	window.open(PageURL, WindowName, win_decs + "width=" + win_width + ", height=" + win_height);
	
}



//-->


