function DestinosJump(MiCampo,Url) {
	ID = MiCampo.value;
	if (ID != "") { window.location.href = Url + ID; }
};

function Precargar() { 
	if(document.images) { 
		if(!document.Prec) document.Prec=new Array();
		var i, j=document.Prec.length, a=Precargar.arguments; 
		for(i=0; i<a.length; i++) { 
			if (a[i].indexOf("#")!=0) { 
				document.Prec[j]=new Image; 
				document.Prec[j++].src=a[i];
			}
		}
	}
};



function Pop(Url,MWin,w,h,t,l) {
if (typeof(h)=="undefined") { h =100; }
if (typeof(w)=="undefined") { w =100; }
if (typeof(t)=="undefined") { t =100; }
if (typeof(l)=="undefined") { l =100; }

MWin = window.open(Url,MWin,"resizable=no,scrollbars=1,width=" + w + ",height=" + h + ",top=" + t + ",left="+ l);
MWin.focus();
}
