function show_big()
{ var w, t;
//  var name=document.getElementById(p_name).innerHTML;

  document.getElementById("big_img_pn").style.display="block";
  document.getElementById("banner").style.display="none";
  w=document.getElementById("big_img_pn").offsetWidth;
  t=(screen.width-w)/2;
  if (t<0) {t=10};
  document.getElementById("big_img_pn").style.left=t;
}

function close_big()
{
  document.getElementById("big_img_pn").style.display="none";
  document.getElementById("banner").style.display="block";
}

function for_print(p_img)
{
  myWin=open("", "displayWindow","width=700,height=400,status=no, resizable=yes,toolbar=no,menubar=no,scrollbars=yes");
  myWin.document.open();
  myWin.document.write('<html><head><title></title>');
  myWin.document.write('<link href="http://naboru.com.ua/style.css" rel="stylesheet" type="text/css">');
  myWin.document.write('</head><body>');
  myWin.document.write('<img src="http://naboru.com.ua/images/'+p_img+'" alt="Печать" name="Печать" align="middle" border="0">');
  myWin.document.write("</body></html>");
  myWin.document.close();
}

function pokupka()
{
 if ((document.emailForm.k_name.value=="")
    ||(document.emailForm.k_subject.value=="")
    ||(document.emailForm.k_text.value=="")
    ||(document.emailForm.k_email.value=="")
    ||(document.emailForm.k_email.value.search("@")==-1 )
    ||(document.emailForm.k_email.value.search("[.*]" )==-1 )
    )
 { alert("Пожалуйста, заполните форму полностью и правильно."); }
 else
 {
  $sl="Заказ на товар \n\n";
  $sl=$sl+"Код : "+document.getElementById("prod_kod").innerHTML+"\n";
  $sl=$sl+"Наименование : "+document.getElementById("prod_name").innerHTML+"\n";
  $sl=$sl+"Цена : "+document.getElementById("prod_price").innerHTML+"\n\n";
  $sl=$sl+"Фамилия, Имя : "+document.emailForm.k_name.value+"\n";
  $sl=$sl+"Адрес доставки : "+document.emailForm.k_text.value+"\n";
  $sl=$sl+"Телефон : "+document.emailForm.k_subject.value+"\n";
  $sl=$sl+"E-mail : "+document.emailForm.k_email.value+"\n";

  document.emailForm.m_massage.value=$sl;
//  document.emailForm.action = "http://naboru.com.ua/e-mail-n.php"
  document.emailForm.submit();
 }
}

function get_prod(nn)
{
 document.getElementById("z_name").value=document.getElementById("n"+nn).innerHTML;
 document.getElementById("z_price").value=document.getElementById("p"+nn).innerHTML;
 document.getElementById("z_kod").value=nn;
 document.getElementById("z_count").value=document.getElementById("k"+nn).value;
 document.f_zakaz.submit();
}



  function sandmail()
  {
   if ((document.emailForm.text.value=="")
       ||(document.emailForm.k_email.value.search("@")==-1 )
       ||(document.emailForm.k_email.value.search("[.*]" )==-1 ) )
       { alert( "Пожалуйста, заполните форму полностью и правильно." );}
         else if ((document.emailForm.k_email.value.search(";")!=-1)
               ||(document.emailForm.k_email.value.search(",")!=-1)
               ||(document.emailForm.k_email.value.search(" ")!=-1))
               { alert("Нельзя вводить более одного адреса email."); } 
             else {
                   $sl = "Автор: "+document.emailForm.k_name.value+"\n";
                   $sl =$sl+"e-mail: "+document.emailForm.k_email.value+"\n";
                   $sl =$sl+"=====================================\n";
                   $sl =$sl+document.emailForm.text.value+"\n";
                   $sl =$sl+"=====================================\n";
                   document.emailForm.m_massage.value=$sl;
                   document.emailForm.submit();
                  }
       }


