<!--//
function PopUpWindow( WindowName, FileName, Width, Height ) 
{
	var h, w, StandardH, StandardW, ScreenX, ScreenY
	h = window.screen.availHeight 
	w = window.screen.availWidth

  StandardW = (w / 4) * 3;
  StandardH = (h / 4) * 3;

  if( Width >= StandardW ) Width = StandardW;
  if( Height >= StandardH ) Height = StandardH;
  ScreenX = (w - Width) / 2;
  ScreenY = (h - Height) / 2;
	sFeatures = "height=" + h*.50 + ",width=" + h*.50 + ",screenY=" + (h*.30) + ",screenX=" + (w*.33) + ",top=" + (h*.30) + ",left=" + (w*.33) + ",resizable"
	window.open( FileName, WindowName, 'history=no,toolbar=0,location=0,directories=0,status=0,menubar=yes,scrollbars=yes,resizable=yes,Width=' + Width + ',Height=' + Height + ',left=' + ScreenX + ',top=' + ScreenY );
}
// -->
