var focusControl = document.forms[0].elements["originZip"];
if (focusControl != null) focusControl.focus();

var supported = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;

function openWin(HelpFile) {
if(supported)
  {
   window.open(HelpFile,"howto","resizable=no,scrollbars=yes,status=no,height=500,width=550");
   return false;
  }
else
   return true;
}


function openPopupWin (PopupFile, Title, width, height, Left, Top, scrollbar) 
{
if(supported)
{
	if (width==null)
		width=395;

	if (height==null)
		height=395;

	if (Left==null)
		Left= (screen.width-width)/2;

	if (Top==null)
		Top= (screen.height-height)/2;

	if (scrollbar==null)
		scrollbar=0

	window.open(PopupFile, Title,"direction=no,menubar=no,location=no,toolbar=no,resizable=no,status=no,scrollbars="+scrollbar+",height="+height+",width="+width+",left="+Left+",ScreenX="+Left+",top="+Top+",ScreenY="+Top);
	return false;
}
else
	return true;
}