function ignoreSpaces(string){
 var temp = "";
 string = '' + string;
 splitstring = string.split(" ");
 for(i = 0; i < splitstring.length; i++)
 temp += splitstring[i];
 return temp;
}

function EmptyStringControl(str){
  if(ignoreSpaces(str).length==0)
    return true;
	else
	return false; 
}

function formGonder(){
	ad = document.getElementById('ad');
	web = document.getElementById('web');
	telefon = document.getElementById('telefon');
	eposta = document.getElementById('eposta');
	
	ad.style.borderColor = "#CCC";
	telefon.style.borderColor = "#CCC";
	web.style.borderColor = "#CCC";
	eposta.style.borderColor = "#CCC";
	
	if(EmptyStringControl(ad.value)){
		ad.style.borderColor = "#F00";
	} else if(EmptyStringControl(web.value)){
		web.style.borderColor = "#F00";
	} else if(EmptyStringControl(telefon.value)){
		telefon.style.borderColor = "#F00";		
	} else if(EmptyStringControl(eposta.value)){
		eposta.style.borderColor = "#F00";		
	} else {
		document.form1.submit();
		document.getElementById('formgonder').disabled = true;
	}
}
