function showcart()
{
 document.forms.showcart.submit() ;
}

var popWin;

function popupwindow1(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(200, 200);
 popWin.focus();
}

function popupwindow2(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(20, 20);
 popWin.focus();
}

function popupwindow3(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(20, 20);
 popWin.document.write ("<HTML><HEAD><TITLE>Eva Chacon</TITLE></HEAD>");
 popWin.document.write ("<body bgcolor='#221100' leftmargin='0' topmargin='0' MARGINHEIGHT='0' MARGINWIDTH='0'>");
 popWin.document.write ("<img src='"+url+"'>");
 popWin.document.write ("</body></HTML>");
 popWin.focus();
}

