function favoritos(){
    var title="EXPEDICION URUGUAY"
    var url="http://www.expedicionuruguay.com.uy/"

    if (window.sidebar) window.sidebar.addPanel(title, url,"");

    else if( window.opera && window.print )
    {
    var mbm = document.createElement('a');
    mbm.setAttribute('rel','sidebar');
    mbm.setAttribute('href',url);
    mbm.setAttribute('title',title);
    mbm.click();
    }

    else if( document.all ) window.external.AddFavorite( url, title);

}

function ES_mOvr(src,colorOver,textoStatus) {
	if (navigator.appName=='Microsoft Internet Explorer') {
		if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
		src.bgColor = colorOver;
		window.status = textoStatus;
	} }
}
function ES_mOut(src,colorIn) {
	if (navigator.appName=='Microsoft Internet Explorer') {
		if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = colorIn;
		window.status = '';
	} }
}

function ES_linkCelda(direccion) {
	location.href=direccion;
}

function getObj(id)
{if (document.getElementById) {return document.getElementById(id)}	else if (document.all) {return document.all[id]}	else {return document.all[id]}}

function selector()
{
    var destination=document.pages.pg_choice.value;
    var version = navigator.appVersion;
   // sets variable = browser version
    if(destination!="no_page")
    {
       if (version.indexOf("MSIE") >= -1)
      // checks to see if using IE
       {
          window.location.href=destination;
       }
       else
       {
          window.open(destination, target="_self");
       }
    }
}