<!-- // preload images;

if(document.images)
{
       image_1 = new Image(120,20);
       image_1.src = "images/emailus-over.gif";
}

var newWin = null;
function popUp(strURL, strType, strHeight, strWidth, strLeft, strTop) {
  if (newWin != null && !newWin.closed)
    newWin.close();
  var strOptions="";
  if (strType=="console")
    strOptions="resizable,height="+
      strHeight+",width="+strWidth+",left="+strLeft+",top="+strTop;
  if (strType=="fixed")
    strOptions="status,height="+
      strHeight+",width="+strWidth;
  if (strType=="elastic")
    strOptions="toolbar,menubar,scrollbars,"+
      "resizable,location,height="+
      strHeight+",width="+strWidth;
  if (strType=="long")
    strOptions="scrollbars,"+
      "resizable,height="+
      strHeight+",width="+strWidth+",left="+strLeft+",top="+strTop;
  newWin = window.open(strURL, 'newWin', strOptions);
  newWin.focus();
}

function goBack(url) {
  if (location.hash)  url+=location.hash
  return url
}

function nobox(obj) {
 if(obj.blur){obj.blur();}
}

function OpenNewPage(UrL,LOC)  {
if(UrL == 'EMPTY') { return 0; }

var LOCATION=UrL + ".html" + "#" + LOC ;
if (newWin != null && !newWin.closed)
    newWin.close();

var strOptions="";
var strHeight="500";
var strWidth="640";

    strOptions="scrollbars,"+
      "resizable,location,height="+
      strHeight+",width="+strWidth;

  newWin = window.open(LOCATION, 'newWin', strOptions);
  newWin.focus();
}
    //--> 

