// JavaScript Document


function loadIframe(theURL,img){
	
	document.getElementById('testiframe').src=theURL
	
	switch (img){
		case "inicio":
		document.getElementById('menu').innerHTML="<table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\" height=\"40\" class=\"menu\"><img src=\"../img/inicio_hov.gif\" name=\"Image6\" width=\"146\" height=\"25\" border=\"0\"></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><a href=\"javascript:loadIframe('productos.htm','productos')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image5','','../img/productos_hov.gif',1)\"><img src=\"../img/productos.gif\" name=\"Image5\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><a href=\"javascript:loadIframe('contacto.htm','contacto')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image7','','../img/contacto_hov.gif',1)\"><img src=\"../img/contacto.gif\" name=\"Image7\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr></table>";
		break;
		case "productos":
		document.getElementById('menu').innerHTML="<table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\" height=\"40\" class=\"menu\"><a href=\"javascript:loadIframe('inicio_contenidos.htm','inicio')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image6','','../img/inicio_hov.gif',1)\"><img src=\"../img/inicio.gif\" name=\"Image6\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><img src=\"../img/productos_hov.gif\" name=\"Image5\" width=\"146\" height=\"25\" border=\"0\"></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><a href=\"javascript:loadIframe('contacto.htm','contacto')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image7','','../img/contacto_hov.gif',1)\"><img src=\"../img/contacto.gif\" name=\"Image7\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr></table>";
		break;
		case "contacto":
		document.getElementById('menu').innerHTML="<table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td align=\"right\" height=\"40\" class=\"menu\"><a href=\"javascript:loadIframe('inicio_contenidos.htm','inicio')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image6','','../img/inicio_hov.gif',1)\"><img src=\"../img/inicio.gif\" name=\"Image6\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><a href=\"javascript:loadIframe('productos.htm','productos')\" onMouseOut=\"MM_swapImgRestore()\" onMouseOver=\"MM_swapImage('Image5','','../img/productos_hov.gif',1)\"><img src=\"../img/productos.gif\" name=\"Image5\" width=\"146\" height=\"25\" border=\"0\"></a></td></tr><tr><td height=\"40\" align=\"right\" class=\"menu\"><img src=\"../img/contacto_hov.gif\" name=\"Image7\" width=\"146\" height=\"25\" border=\"0\"></td></tr></table>";
		break;
		
		}
}
		
function enviarcorreo(){

	who=form1.correo.value;
	
	nombre=form1.nombre.value;
	correo="info@autodiel.com"; 
	asunto=form1.asunto.value;
	descripcion=form1.descripcion.value;
	
	parent.location.href='mailto:'+correo+'?subject='+asunto+'&body='+descripcion+'%0A%0A'+nombre+'%0A'+who ;

}