function ieXLiquidWidth() {
   if(document.body.clientWidth < 771){
      return "770px";
   }else if(document.body.clientWidth > 980){
      return "980px";
   }else{
      return "auto";
   }
}
function iefooterfunc() {
   if(document.body.clientWidth < 771){
      return "770px";
   }
   else{
      return "auto";
   }
}
function checkFORM(){
if ((document.forms.form1.ime.value == '') || (document.forms.form1.prezime.value == '') || (document.forms.form1.from.value == '') || (document.forms.form1.broj.value == '') || (document.forms.form1.message.value == '')){
	alert('Molimo popunite polje SVA POLJA U OBRASCU!!!');
	}
else {
	document.forms.form1.submit();
	}	
}