function infoPopUp(url, name, height, width, scrollbars) {
  newWindow = window.open
    (url,
     name,
     "width=" + width + ", \
     height=" + height + ", \
     directories=no, \
     toolbar=no, \
     titlebar=yes, \
     resizeable=no, \
     status=no, \
     location=no, \
     scrollbars=" + scrollbars + ", \
     menubar=no");
}

function imageCloseup(url, iheight, iwidth) {
  var imageCloseup;

  imageCloseup = window.open
    (url,
     "",
     "width=" + iwidth + ", \
     height=" + iheight + ", \
     directories=no, \
     toolbar=no, \
     titlebar=yes, \
     resizeable=no, \
     status=no, \
     location=no, \
     scrollbars=no, \
     menubar=no");

  imageCloseup.document.clear();
  imageCloseup.focus();
  imageCloseup.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>Image Closeup<\/title> <\/head>\n\n<body bgcolor= \"#BBBBBB\">\n\n<center>');
  imageCloseup.document.writeln('<img src=\"' + url + '\">');
  imageCloseup.document.writeln('<\/center> <\/body> <\/html>');
  imageCloseup.document.close();
  imageCloseup.focus();

}

function launchcsc() {
	sizingwin = window.open ("csc.htm","cscwin","width=450,height=460,directories=no,toolbar=no,titlebar=yes,resizeable=no,status=no,location=no,scrollbars=yes,menubar=no");
	x=screen.availWidth;
	sizingwin.moveTo(x-460,0); }

function WrtCookie(ORDERID) {
      var today = new Date();
      var ExpDate = new Date(today.getTime() + (365 * 24 * 60 * 1000));
      var Path = "/";
      var CustID = ORDERID;
      document.cookie = "CustID=" + CustID +"; expires=" + ExpDate.toGMTString(); }

function showLayer(layerName) {
  eval('document.getElementsByTagName("div")["'+layerName+'"].style.visibility="visible"');
}

function hideLayer(layerName) {
  eval('document.getElementsByTagName("div")["'+layerName+'"].style.visibility="hidden"');
}