<!--
function openWindow(URL, TARGET, WIDTH, HEIGHT){
  var width="600", height="300";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
window.open(URL, TARGET, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top);
}
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
function prodShow(url, target)
{
  target = "_blank";
  var width="680", height="430";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("",target, styleStr);
  var head = '<head><title>Ethercom - Product Showcase</title></head>';
  var body = '<body style=\"margin=0pt;padding=0pt;\"><img src='+url+' style=\"margin=0pt;padding=0pt;\"></body>';
  msgWindow.document.write(head + body);
}
//-->
