// JavaScript Document
var var_acceso = 1;

function fn_acceso (var_frm)
{

 if ( var_frm == 1 && var_frm != var_acceso ) 
    { document.getElementById("frm_der").src="frm_der_a.php"; 
      document.getElementById("frm_izq").src="frm_izq.php"; }

 if ( var_frm == 2 && var_frm != var_acceso  ) 
    { document.getElementById("frm_der").src="banner_der.php";
      document.getElementById("frm_izq").src="banner_izq.php"; }
 
 var_acceso = var_frm ;

}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

