function change_style(object_id, style_name, style_value) {
	var obj = document.getElementById(object_id);
	eval('obj.style.' + style_name + '="' + style_value + '"'); 
}

var wndProfile;
function showBizProfile(biz_id) {
	if (wndProfile && !wndProfile.closed)	
		wndProfile.close();
	
	var X = (screen.availWidth/2) - (parseInt(470)/2) + "px";
	var Y = (screen.availHeight/2) - (parseInt(380)/2) + "px";
	
 	wndProfile = window.open('http://perfiles.negociosdelcaribe.com?biz_id=' + biz_id, 'wndProfile', 'toolbar=no, scrollbars=yes, left=' + X + ', top=' + Y + ', width=593, height=440, resizable=no');
	
	
}

function addFavorite(url, title)
{
	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "")
	else alert("Presione Control+D si su navegador en Opera")
}

function expandContract(id_name)
{
	    var obj = document.getElementById(id_name);
		
		if(obj.style.display != '')
		{
			obj.style.display = '';
			
			
		}else{
			obj.style.display = 'none';
			
		}
	
}
