function janela(www,h,w)
{
	var height = window.screen.height - 160;
	var width = window.screen.width;
	var top = (height- h)/2;
	var left = (width - w)/2;
	window.open(www,"flash","top=" + top + ",left="+ left +",width="+w+",height="+h+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,scrolling=yes,resizable=no")
}

function validaCall(){
	//Fields
	var name = document.getElementById('name');
	var email = document.getElementById('email');
	var telephone = document.getElementById('telephone');
	var call = document.getElementById('call_back_time');
	var subject = document.getElementById('subject');
	var msg = '';
	var field = '';
	//validation
	if(name.value==''){ msg+='Type your Name.\n'; if(field==''){field = 'name';}}
	if(email.value==''){ msg+='Type your Email.\n'; if(field==''){field = 'email';}}
	if(telephone.value==''){ msg+='Type your Telephone.\n'; if(field==''){field = 'telephone';}}
	if(call.value==''){ msg+='Select the best time to contact you.\n'; if(field==''){field = 'call_back_time';}}
	if(subject.value==''){ msg+='Type the Subject.'; if(field==''){field = 'subject';}}
	if(msg!=''){alert('Please Attention!\n' + msg);document.getElementById(field).focus();return false;}
	else{return true;}
	
}

$(document).ready(function(){
	
	$(".options a").mouseover(function(){
		var value = $(this).attr("title");
		$(".legend").html(value);
	}).
	mouseout(function(){
		$(".legend").html("");
	});
	
});