// JavaScript Document
function objetoAjaxsv()
	{
		var xmlhttp=false;
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
			   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
				xmlhttp = false;
			}
		}
	
		if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
			xmlhttp = new XMLHttpRequest();
		}
		return xmlhttp;
	}
	


function saveClick(tel)
{
//	alert(tel);	
	document.getElementById('telefono').value=tel;
	wphCall();
	if (tel.substr(0,5)=="88124")
	{
		
	}
	else
	{
//		ajax111=objetoAjaxsv();
//		ajax111.open("GET", "http://ofertasjazztel.es/saveClick.php?telefono="+tel);
//		ajax111.send(null);
		var hn = window.location.hostname; 	
		var conte ="<iframe src='http://ofertasjazztel.es/saveClick.php?telefono="+tel+"&dom="+hn+"' style='display:none'></iframe>"
		document.getElementById('void').innerHTML = conte;
	}


}

	
