// javascript code library (VA, 05/07/06)

// global variables
iWindows2 = new Array();
iCurrentWindows = 0;

function OpenSizedWindow(pagename, name, width, height, top, left)
{
	var f;
	f = "width=" + width + ",height=" + height;
	f = f + ",top=" + top + ",left=" + left;
	f = f + ",toolbar=0,titlebar=no,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0";
	iWindows2[iCurrentWindows++] = window.open(pagename, name, f);
}


