function nuevoAjax()
{ 	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 gal(id,img)
{	
	var div=document.getElementById("not_dest_img");
	var ajax=nuevoAjax();
	ajax.open("POST", "http://www.capehornmarine.com/ajax/gal.php", true);
	ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajax.send("id="+id+"&img="+img);
		ajax.onreadystatechange=function()
		{
			if (ajax.readyState==4)
			{
				div.innerHTML=ajax.responseText;
			}
		}
}
function content(id,sec)
{	
	var div=document.getElementById("dspl_proyect");
	var ajax=nuevoAjax();
	ajax.open("POST", "http://www.capehornmarine.com/ajax/content.php", true);
	ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajax.send("id="+id+"&sec="+sec);
		ajax.onreadystatechange=function()
		{
			if (ajax.readyState==4)
			{
				div.innerHTML=ajax.responseText;
			}
		}
}

