function sendMessage()
{	
	jQuery.post(host+"/index.php?a=sendmail&mode=1",{
			firma: $("#firma_right").val(),
			email: $("#email_right").val(),
			telefon: $("#telefon_right").val(),
			www: $("#www_right").val(),
			message: $("#message_right").val()			
		 },
		 function(data) { 
		 				 
			 
			 var result = parseInt(data);
			 
			 if(result==1)
			 {
			 	$("#messageFailed").hide('slow');				 	
				$("#messageSend").show('slow');
			 }
			 else
			 {
			 	$("#messageSend").hide('slow');
				$("#messageFailed").show('slow');
			 }
		 }
	);			
}

function sendMessageBottom()
{	
	jQuery.post(host+"/index.php?a=sendmail&mode=2",{
			firma: $("#firma_bottom").val(),
			email: $("#email_bottom").val(),
			telefon: $("#telefon_bottom").val(),			
			message: $("#message_bottom").val()			
		 },
		 function(data) { 
		 				 
			 
			 var result = parseInt(data);
			 
			 if(result==1)
			 {
			 	$("#messageFailedBottom").hide('slow');				 	
				$("#messageSendBottom").show('slow');
			 }
			 else
			 {
			 	$("#messageSendBottom").hide('slow');
				$("#messageFailedBottom").show('slow');
			 }
		 }
	);			
}

function checkRightForm()
{
	var ok = true;
	
	if(document.getElementById('firma_right').value=='' || document.getElementById('firma_right').value==document.getElementById('firma_right').defaultValue)
	{
		document.getElementById('firma_right').style.color='#A32B6D';
		document.getElementById('firma_right').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('email_right').value=='' || document.getElementById('email_right').value==document.getElementById('email_right').defaultValue)
	{
		document.getElementById('email_right').style.color='#A32B6D';
		document.getElementById('email_right').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('telefon_right').value=='' || document.getElementById('telefon_right').value==document.getElementById('telefon_right').defaultValue)
	{
		document.getElementById('telefon_right').style.color='#A32B6D';
		document.getElementById('telefon_right').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('www_right').value=='' || document.getElementById('www_right').value==document.getElementById('www_right').defaultValue)
	{
		document.getElementById('www_right').style.color='#A32B6D';
		document.getElementById('www_right').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('message_right').value=='' || document.getElementById('message_right').value==document.getElementById('message_right').defaultValue)
	{
		document.getElementById('message_right').style.color='#A32B6D';
		document.getElementById('message_right').style.fontWeight='bold';
		ok = false;
	}
	
	
	if(ok)
		sendMessage();

}
function checkBottomForm()
{
	var ok = true;
	
	if(document.getElementById('firma_bottom').value=='' || document.getElementById('firma_bottom').value==document.getElementById('firma_bottom').defaultValue)
	{
		document.getElementById('firma_bottom').style.color='#A32B6D';
		document.getElementById('firma_bottom').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('email_bottom').value=='' || document.getElementById('email_bottom').value==document.getElementById('email_bottom').defaultValue)
	{
		document.getElementById('email_bottom').style.color='#A32B6D';
		document.getElementById('email_bottom').style.fontWeight='bold';
		ok = false;
	}
	if(document.getElementById('telefon_bottom').value=='' || document.getElementById('telefon_bottom').value==document.getElementById('telefon_bottom').defaultValue)
	{
		document.getElementById('telefon_bottom').style.color='#A32B6D';
		document.getElementById('telefon_bottom').style.fontWeight='bold';
		ok = false;
	}	
	if(document.getElementById('message_bottom').value=='' || document.getElementById('message_bottom').value==document.getElementById('message_bottom').defaultValue)
	{
		document.getElementById('message_bottom').style.color='#A32B6D';
		document.getElementById('message_bottom').style.fontWeight='bold';
		ok = false;
	}
	
	
	if(ok)
		sendMessageBottom();
}

