function ccol(a) { a.style.color="#999900"; }
function rcol(a) { a.style.color="#ffffff"; }

// función para abrir una ventana nueva de navegador
  function popup() 
  {
    
    window.open('empresas/nueva_empresa.php', 'INFORMACION', 'width=500,height=600,left=25,top=25,scrollbars=yes');
  }
	// función para abrir una ventana nueva de navegador
  function popup2(url) 
  {
    left_pos = 25;
    top_pos = 75;
    win_width = 350;
    win_height= 500;
	  
    if (screen) {
	   left_pos = (screen.width / 2) - (win_width / 2);
    }
    window.open(url, 'INFORMACION', 'width='+win_width+',height='+win_height+',left='+left_pos+',top='+top_pos+',scrollbars=no');
  }
function opven()
	{
  window.open ("http://www.barcos.com/publicidad/publicidad.php","guia","scrollbars=yes,width=760,height=550,top=5,left=5");
	}
function ayuda()
	{
  window.open ("http://www.barcos.com/ayuda.html","ayuda","scrollbars=yes,width=300,height=500,top=5,left=480");
	}
function control()
	{
var a = document.emp.empresa.value;
	if (a=="")
		{
		alert("Por favor, escriba una empresa");
		}
	else
		{
		document.emp.submit();
		}
	}
function control2()
	{
var a = document.emp.empresa.value;
	if (a=="")
		{
		alert("Por favor, escriba una empresa");
		return false;
		}
	}
function recontrol()
	{
var a = document.p_clave.clave.value;
	if (a=="")
		{
		alert("Por favor, escriba alguna palabra clave");
		}
	else
		{
		document.p_clave.submit();
		}
	}
function recontrol2()
	{
var a = document.p_clave.clave.value;
	if (a=="")
		{
		alert("Por favor, escriba alguna palabra clave");
		return false;
		}
	}
