function openWin(doc,winName)
{
var theOpen;
  if(winName=="MoreWin")
    theOpen=window.open(doc,winName,'width=600,height=400,scrollbars=yes');
  else if(winName=="CloneWin")
    theOpen=window.open(doc,winName,'width=600,height=400,scrollbars=yes');
  else if(winName=="FormatWin") 
   theOpen=window.open(doc,winName,'width=300,height=200,scrollbars=yes');
  else if(winName=="ProdWin")
   theOpen=window.open(doc,winName,'width=450,heigth=400,scrollbars=yes,resize=yes');
  else if(winName=="DescriptiveWin")
   theOpen=window.open(doc,winName,'width=300,height=400,scrollbars=yes');
  else if(winName=="FeedbackWin")
   theOpen=window.open(doc,winName,'width=400,height=500,scrollbars=yes');
  else if(winName=="TargetWin")
   theOpen=window.open(doc,winName,'width=200,height=500,scrollbars=yes');
 theOpen.focus();

}

function popPDF(pdfile)
{

      pdfWindow=window.open(pdfile,"thePDF",'400,800,resizable=yes');
      pdfWindow.focus();
}
function popWin(pdfile)
{
   win=window.open(pdfile,"theWin",'resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes');
   //win=window.open(pdfile,"theWin",'width=500,heigth=400,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes');
   win.focus();
}
//function IconOnFocus(site,doc,winName,width,height,tb,loc,dir,st,mb,sb,copy,resize)
function IconOnFocus(site,doc,winName)
{
  if (site==51062)  doc='/e_catalog/'+doc; 
  else doc='/e_catalog/'+doc;

  var theOpen;
  if(winName=="legendWin")
    theOpen=window.open(doc,winName,'height=250,width=250');
  else if(winName=="targetWin")
   theOpen=window.open(doc,winName,'width=200,height=500,resize=yes,scrollbars=yes');
  else if(winName=="StatusWin")
   theOpen=window.open(doc,winName,'width=450,height=350');
  else if(winName=="disclaimer")
   theOpen=window.open('priceDisclaimer.html',winName,'width=200,height=300,resize=yes,scrollbars=yes');
  theOpen.focus();
//    theOpen=window.open(doc,winName,'width='+width+',height='+height+',toolbar='+tb+',location='+loc+',directories='+dir+',status='+st+',menubar='+mb+',scrollbars='+sb+',copyhistory='+copy+',resizable='+resize+"'"); 

}

