function sendZbMail(){
var isError=false;
if((document.sendmail_det.vasemail.value == '')||(document.sendmail_det.vasemail.value == '@')||(document.sendmail_det.vasemail.value.indexOf('@') == -1)||(document.sendmail_det.vasemail.value.indexOf('.') == -1)||(document.sendmail_det.vasemail.value.length < 5)){document.getElementById('vasemail').className = 'text error';isError=true;}
else{document.getElementById('vasemail').className = 'text';}
if((document.sendmail_det.vasejmeno.value == '')||(document.sendmail_det.vasejmeno.value == ' ')){document.getElementById('vasejmeno').className = 'text error';isError=true;}
else{document.getElementById('vasejmeno').className = 'text';}
if((document.sendmail_det.cilovyemail.value == '')||(document.sendmail_det.cilovyemail.value == '@')||(document.sendmail_det.cilovyemail.value.indexOf('@') == -1)||(document.sendmail_det.cilovyemail.value.indexOf('.') == -1)||(document.sendmail_det.cilovyemail.value.length < 5)){document.getElementById('cilovyemail').className = 'text error';isError=true;}
else{document.getElementById('cilovyemail').className = 'text';}
if(!isError){
document.sendmail_det.submit();
}
}
function web_zboziZoomDet(zboziID,fotoID,winX,winY){
window.open('/servis/plugins/webeditor/modules/zbozi2/data/zoomimage.php?zboziid='+zboziID+'&fotoid='+fotoID,'_blank','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,rezizable=yes,width='+winX+',height='+winY+',left=100,top=100');
}
function web_zboziZoomDetMain(imgURL,imgW){
document.getElementById('zbozidet_mainimg').innerHTML='<img class="mainimg" src="'+imgURL+'" width="'+imgW+'" alt="" />';
}