﻿// JScript File

function displayAlertMessage(strMessage) { alert(strMessage); }

function displayCenterPopup(url, name, width, height, scrollbar, toolbar, statusbar){
    var properties = 'scrollbars=' + scrollbar + ',toolbar=' + toolbar + ',status=' + statusbar;
	var iLeft = (window.screen.width - width) / 2;
	var iTop = (window.screen.height - height) / 2;
	
	window.open(url, name, properties + ',width=' + width + ',height=' + height + ',left=' + iLeft + ',top=' + iTop);
}

function getObj(objName) {
	if (document.getElementById) {
		return document.getElementById(objName);
	}
	else if (document.all) {
		return document.all[objName];
	}
	else if (document.layers) {
		return document.layers[objName];
	}
}