var winName;
var winBasket;

function winOP(imgPath,width,height){
 winName=window.open('','','width='+width+',height='+height+',scrollbars=no,resizable=no');
 with(winName){
  document.write('<html><head><title>Halla-lighting</title></head>'); 
  document.write('<body topmargin=0 leftmargin=0 marginwidth=0 marginheigth=0 onLoad="self.focus()">');
  document.write('<a href=\"javascript: self.close()\"><img src="'+imgPath+'" width='+width+' height='+height+' border=0></a>');
  document.write('</body></html>');
 }
 winName.focus();
}
function addItemBasket(Item){
 winBasket=window.open('/modules/basket.php?mode=add_item&Item='+Item,'addBasket','width=300,height=200,scrollbars=yes,resizable=no'); 
}
function checkOrder(obj){
 var error='';
 if(obj.fio.value==''){ error="  \"...\"\n"; }
 if(obj.phone.value=='' && obj.email.value==''){ error+='  "./"   "E-mail"'; }
 
 if(error==''){ 
  obj.submit();
 } else {
  alert(error);
 }
}
