<!-- -------------This adjusts width & height of new windows for IE-->
if (navigator.appName == 'Netscape')
	{
		adjWidth =  0;
		adjHeight = 0;
		adjWidthaw =  0;
		adjHeightaw = 20;
	}
	else
	{ //if MIE: add necessary px
		adjWidth =  0;
		adjHeight =  -19;
		adjWidthaw =  0;
		adjHeightaw =  0;
	}

<!-- -------------This adjusts width & height of new windows for IE-->
<!-- -------------Opens new Generic Window-->
var newgeneric = null;
function opengeneric(url,name,w,h)
	{
var neww = (adjWidth - (-w));
var newh = (adjHeight - (-h));
var winl = (screen.availWidth - neww) / 2;
var wint = ((screen.availHeight - newh) - 80) / 2;
  if (newgeneric != null && newgeneric.open) newgeneric.close();
  newgeneric = window.open(url, name ,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + neww + ",height=" + newh + ",top=" + wint + ",left=" + winl);
	}
