﻿// JScript File
function openAWindow( pageToLoad, winName, width, height, center, scroll,
status)
{
	if (winName == "itdetailWin")
	{
		var idxEquals = pageToLoad.indexOf("=")+1
		pageToLoad = (pageToLoad.substr(0,idxEquals)) +
(escape(pageToLoad.slice(idxEquals)))
	}
	xposition=10; yposition=10;
		if ((parseInt(navigator.appVersion) >= 4 ) && (center)) {
			xposition = (screen.width - width) / 2;
			yposition = (screen.height - height) / 2;
		}
	if (status == "" || status == null )
	{
		status = "0"
	}
	else
	{
		status = "1"
	}
	args = "width=" + width + ","
	+ "height=" + height + ","
	+ "location=0,"
	+ "menubar=0,"
	+ "resizable=0,"
	+ "scrollbars=" + scroll + ","
	+ "status=" + status + ","
	+ "titlebar=0,"
	+ "toolbar=0,"
	+ "hotkeys=0,"
	+ "left=" + xposition + ","
	+ "top=" + yposition;
	var objNewWindow = window.open(pageToLoad,winName,args);
}

