﻿// JScript File
function popWin(url,name,w,h,scroll) {

   var str = "height=" + h + ",innerHeight=" + h;

   str += ",width=" + w + ",innerWidth=" + w;

	if (window.screen) {

		var ah = screen.availHeight - 30;

		var aw = screen.availWidth - 10;

		var xc = (aw - w) / 2;

		var yc = (ah - h) / 2;

		str += ",left=" + xc + ",screenX=" + xc;

		str += ",top=" + yc + ",screenY=" + yc;

	}

	pop = window.open(url,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scroll + ",resizable=0," + str);

   pop.focus();

}
