var myverydocument = window;
var timeout3 = 0;
var timeout5 = 3;
function ventana(url, w_x, h_x, id_hotel, lang, link_h, name, MyTitle, MyDomain,Section)
{
	
if (!Windows.getWindow(name)){
  var first = MyDomain+"/";
  
  first = first + url + "?section="+Section+"&id="+id_hotel+"&lang="+lang+"&link="+link_h;
  
  var win = new Window({id: name, className: "alphacube", title: MyTitle, width: w_x, height: h_x, wiredDrag: true, url: first, showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff }); 
  win.refresh();
  win.setDestroyOnClose();
  win.ProcessHTMLEntities = true;
  win.showCenter(true)
  win.toFront();
  var fin = win.getId();
	}
  
}
