// JavaScript Document
<!--
function CheckDomain(){
	showHideId('load','show');
	sendData('domaincheck.portada?d='+document.frm_domain_search.txt_domain.value+'&s='+document.frm_domain_search.ddl_domain_extension.value);
	return false;
}
function CheckLogin(){
	showHideId('loadlogin','show');
	sendData('logincheck.portada?u='+document.frm_login.user_name.value+'&p='+document.frm_login.user_pass.value);
	return false;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function zoomText(Accion,Elemento){ 

	obj=document.getElementById(Elemento); 
	if (obj.style.fontSize==""){ 
	obj.style.fontSize="100%"; 
	} 
	actual=parseInt(obj.style.fontSize); 
	incremento=10; 
	//accion sobre el texto 
	if(Accion=="restablecer"){ 
	obj.style.fontSize="100%" 
	} 
	if(Accion=="aumentar"){ 
	valor=actual+incremento; 
	obj.style.fontSize=valor+"%" 
	} 
	if(Accion=="disminuir"){ 
	valor=actual-incremento; 
	obj.style.fontSize=valor+"%" 
	} 
}
function makevisible(cur,which)
	{
	if(document.getElementById)
		{
		if (which==0)
			{
			if(document.all)
				cur.filters.alpha.opacity=100
			else
				cur.style.setProperty("-moz-opacity", 1, "");
			}
		else
			{
			if(document.all)
				cur.filters.alpha.opacity=40
			else
				cur.style.setProperty("-moz-opacity", .4, "");
			}
		}
	}
//-->
