function initb()
{
	var comun = '';
	document.getElementById('bPoblaciones').onchange = new Function("document.getElementById('f1').submit()");
	document.getElementById('bTipo').onchange = new Function("document.getElementById('f1').submit()");
	document.getElementById('bRPrecio').onchange = new Function("document.getElementById('f1').submit()");
	document.getElementById('bIdH').onchange = new Function("document.getElementById('f1').submit()");
	
	if(document.getElementById('link_agregar'))
		{
		document.getElementById('link_agregar').onclick  = function()
			{
			agregar('http://www.zaragozahoteles.com','zaragozahoteles.com');	
			}
		}
}

function agregar(url, titulo)
{
	try
	{
		 //FIREFOX
		 window.sidebar.addPanel(titulo, url,"");
	}
	catch(exception)
	{
		 //IEXPLORER
		 window.external.AddFavorite( url, titulo);
	}
}

function abreventana(url, name, w, h, perc, scroll)
{
	var winX = ( screen.availWidth - w )*perc*.01;
	var winY = ( screen.availHeight - h)*perc*.01;
	popupWin = window.open(url, '','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',resizable=1,width=' + w + ',height=' + h + ',left=' + winX + ',top=' + winY);
	if ((document.window != null) && (!popupWin.opener))
	{
		popupWin.opener = document.window;
	}
	popupWin.focus();

}
