//funcion contra el spam
function antispam(cuenta,clase)
{
var dominio = "agroquimicoscespedes.com"
document.write("<a class='"+ clase +"' href=\"mailto:" + cuenta + "@" + dominio + "\">" + cuenta + "@" + dominio + "</a>");
}

//funcion para el cambio de estilos segun el navegador
function estilos(){
	if ((navigator.appName).indexOf("Microsoft")!=-1) 
	{
		document.write('<link rel="stylesheet" type="text/css" href="App_Themes/ie_estilo.css" media="screen" />');
	}
	else 
	{
		document.write('<link rel="stylesheet" type="text/css" href="App_Themes/estilo.css" media="screen" />');
	}	
}


//funcion para el cambio de estilos segun el navegador
function estilosdentro(){
	if ((navigator.appName).indexOf("Microsoft")!=-1) 
	{
		document.write('<link rel="stylesheet" type="text/css" href="../App_Themes/ie_estilo.css" media="screen" />');
	}
	else
	{
		document.write('<link rel="stylesheet" type="text/css" href="../App_Themes/estilo.css" media="screen" />');
	}	
}
