/////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function imprimir(printf) 
{
   var ventana = window.open(printf, null, "height=760,width=620,status=yes,toolbar=no,Scrollbars=yes,Titlebar=yes,menubar=no,location=no");
   var contenido = "<html><head><link href='css/imprimir.css' rel='stylesheet' type='text/css' /></head><body onload='window.print();'><div class='imprimir_transporte'>" + document.getElementById(printf).innerHTML + "</div></body></html>";
   ventana.document.open();
   ventana.document.write(contenido);
   ventana.document.close();
}

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function imprime(mon_document){
  print(mon_document);
}

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=selObj.options[selObj.selectedIndex];
}



