<!--
var name = null;
var file = null;
var winwidth = null;
var winheight = null;
var hwnd = null;
var rszbl = null;
var scrllbrs = null;


function launch(file,name,winwidth,winheight,rszbl,scrllbrs)
{
var string="width="+winwidth+",height="+winheight+"toolbar=no,directories=no,menubar=no,resizable="+rszbl+",scrollbars="+scrllbrs+",dependent=yes"
hwnd = window.open(file,name,string) ;
          if (navigator.appName == "Netscape") {
             hwnd.focus()  
          }
}

function preload(imgObj,imgSrc) {
	eval(imgObj+' = new Image()');
	eval(imgObj+'.src = "'+imgSrc+'"');
}

function goatv(){
	launch('http://gaelco.es/atvTrack/index.html','win3',800,565,'yes','no');
}
// -------------  End definition of button rollover functions ---------------

//-->



