function IsComplete()
{
	var isComplete=true;
	document.getElementById('weContactForm_name_attention').style.visibility='hidden';
	document.getElementById('weContactForm_mail_attention').style.visibility='hidden';
	document.getElementById('weContactForm_text_attention').style.visibility='hidden';
	
	if (document.getElementById('weContactForm_name').value.length==0)
	{
		isComplete=false;
		document.getElementById('weContactForm_name_attention').style.visibility='visible';
	}
	if (document.getElementById('weContactForm_mail').value.length==0)
	{
		isComplete=false;
		document.getElementById('weContactForm_mail_attention').style.visibility='visible';
	}
	if (document.getElementById('weContactForm_text').value.length==0)
	{
		isComplete=false;
		document.getElementById('weContactForm_text_attention').style.visibility='visible';
	}
	
	return isComplete;
}

function clearFields()
{
	document.getElementById('weContactForm_name').value='';
	document.getElementById('weContactForm_phone').value='';
	document.getElementById('weContactForm_mail').value='';
	document.getElementById('weContactForm_text').value='';
}

function toggleContactField(thisField)
{
	if(thisField && thisField.style && !thisField.style.background) {thisField.style.background='#efefef';}
	   
	if(thisField && thisField.style && thisField.style.background && thisField.style.background=='#fff')
	{
		thisField.style.background='#efefef';
	}
	else if (thisField)
	{
		thisField.style.background='#fff';
	}
}

function openContactPopUp(url,action,arg) 
{
	popupWin = window.open(url+"/weContactPopUp.php?a="+action+"&arg="+arg,"weContactWindow","top=25,left=50,resizable=no,width=200,height=200,scrollbars=0,menubar=no")
	if(popupWin.focus) {popupWin.focus();}
}