function objetoAjax(){
	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 selector2(id,campo,tabla){
	window.open(urlbase+"includes/extras/index2.php?campo="+campo+"&tabla="+tabla+"&id="+id,"multi_explorer","width=955,height=600,menubar=no,status=yes,resizable=yes");
}

function selector3(session_id){
	window.open(urlbase+"includes/extras/extplorer/index.php","multi_explorer","width=800,height=600,scrollbars=1,menubar=1,status=no,resizable=yes");
}

function selector4(id, campo ,tabla){
	window.open(urlbase+"includes/extras/index3.php?id=" + id + "&campo=" + campo + "&tabla=" + tabla,"multi_explorer","width=695,height=400,menubar=no,scrollbars=1,status=no,resizable=yes");
}

function selector5(id1,id2,fld1,fld2,capa,tipo){
	window.open(urlbase+"includes/extras/index4.php?id1="+id1+"&id2="+id2+"&fld1="+fld1+"&fld2="+fld2+"&capa="+capa+"&tipo="+tipo,"multi_explorer","width=620,height=400,menubar=no,scrollbars=1,status=yes,resizable=no");
}

function selector6(cod){
	window.open(urlbase+"includes/extras/index5.php?id="+cod,"multi_explorer","width=440,height=180,menubar=no,scrollbars=1,status=no,resizable=no");
}
function sas(){
	divResultado = document.getElementById('dummy2');
	ajax=objetoAjax();
	ajax.open("POST",  urlbase+'application/views/paginas/modul/sas.php', true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			divResultado.innerHTML = ajax.responseText;
			alert(document.getElementById('mensaje_sas').value);
		}
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("name=" + document.getElementById('f_name').value + "&email=" + document.getElementById('f_email').value);
}