// select
function doRedirect(myObject) {
	if (myObject.options[myObject.selectedIndex].value!="") { 
		top.location.href=myObject.options[myObject.selectedIndex].value; 
	} else {
		return false;
	}
}
//-->
//llevar formulario
function ir(sitio) {
	document.formulario.action=sitio;
	document.formulario.submit();
}
//-->
<!--abre ventanas
function AbreventanaEnlace(nombre,ancho,alto) { 
  var winName = "REVESTUR";
  var features = "width=" + ancho  + ", height=" + alto;
  window.open(nombre,winName,features);
}
//-->