var isIE6 = false;
var fname='';


function myOnload() {

// reduce image flicker in IE6
 if (isIE6) {
   try {
     document.execCommand('BackgroundImageCache', false, true);
   } 
   catch(e) {}; // ignore it
 }

}

window.onload = myOnload;


function zoomFotoShow(fileName){
  window.open(fileName,'_blank','width=320,height=320,left=70,top=50,location=no,toolbar=no,menubar=no,status=no,scrollbars=yes');
}


function submit_form()
{
var email=document.contact.email.value;
var fname=document.contact.fname.value;
var text =document.contact.tel.value;
// var word=document.contact.txtword.value;

  if (fname.length<1)
  {
    alert ('Укажите ваше имя, пожалуйста!');
    return false;
  }

  if (text.length<1)
  {
    alert ('Укажите ваш телефон, пожалуйста!');
    return false;
  } 

  if ((email.indexOf('@') < 1)||(email.length<6))	 // email@site.domen 1+1+1+1+2 ~ 6..
  {
    alert ('Не корректный емайл = '+email);
    return false;
  }

/*
  if (word.length<7)
  {
    alert ('Sorry, field Word Verification is required!');
    return false;
  }
*/
  return true;
} 

