function goto(adr) {
   alert(adr);
   location.href=adr;
}

function check_order(formName) {
   switch(formName) {
   case "orderForm": //записаться к мастеру
      if (document.getElementById(formName).fio.value.length==0 ||
          document.getElementById(formName).email.value.length==0
      )
      {
         alert("Одно из обязательных полей формы не заполнено!");
         return false;
      }
      return true;
      break;
   }
}

function colorchoose(good_id) {
  var wdt=600;
  var hgt=450;
  var browserWnd;
  var htmltext;

  xPos = (screen.width-wdt)/2;
  yPos = (screen.height-hgt)/2;

  browserWnd=window.open("showcolors.php?good_id="+good_id,'_blank','width='+wdt+',height='+hgt+',top='+yPos+',left='+xPos+',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no');

}

function newwin(aaa) {
  var wdt=400;
  var hgt=350;
  var browserWnd;
  var htmltext;

  xPos = (screen.width-wdt)/2;
  yPos = (screen.height-hgt)/2;

  browserWnd=window.open("",'_blank','width='+wdt+',height='+hgt+',top='+yPos+',left='+xPos+',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no');

   var htmltext="<html><head><link rel='stylesheet' href='site.css' type='text/css'><META HTTP-EQUIV='Content-Type' content='text/html; charset=windows-1251'><title>Детализация товара</title></head><body bgcolor=#ffffff><table cellpadding=0 cellspasing=0 border=0 width=100% height=100% class=NormText><tr><td height=100% valign=top>"+aaa+"</td></tr><tr><td height=60 valign=bottom align=center nowrap><a href='#' onclick='window.close();'>Закрыть окно</a></td></tr></table></body></html>";
   browserWnd.document.write(htmltext);

}


function repl(id) {
   if (parseInt(document.getElementById(id).value*1)!=document.getElementById(id).value*1) {
      document.getElementById(id).value=0;
   }

}

function checkord(id, colorid) {
   if (parseInt(document.getElementById(id).value*1)!=document.getElementById(id).value*1 || document.getElementById(id).value*1<=0) {
       alert("Укажите количество заказываемой продукции!");
       return false;
   }
   add2basket(id, colorid);
   return false;
}


function add2basket(id, colorid) {

  var wdt=380;
  var hgt=250;
  var browserWnd;
  var htmltext;

  xPos = (screen.width-wdt)/2;
  yPos = (screen.height-hgt)/2;

  var num=parseInt(document.getElementById(id).value*1);

  if (document.getElementById(colorid)) {
    colortext=document.getElementById(colorid).value;
  }
  else {
    colortext="";
  }

  browserWnd=window.open("add2basket.php?mod_id="+id+"&num="+num+"&color="+colortext,'_blank','width='+wdt+',height='+hgt+',top='+yPos+',left='+xPos+',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no');
}