
function AddBookmark() {
	
	var title = "Country Estates";
	var url = "http://www.country-estates.com/";
	if (window.sidebar) {
		// Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url, "");
	} else if( window.external ) {
		// IE Favorite
		window.external.AddFavorite( url, title);
	}
	else if(window.opera && window.print) {
		// Opera Hotlist
		alert("Sorry your browser doesn't support add to favourites");
	}
	else {
		alert("Sorry your browser doesn't support add to favourites");
	}
	
}

function OpenPopup(url) {
 var win = window.open(url,"WinaClio","height=400,width=544");
 win.focus();
}

function changeTab(div, lnk, cssClassName) {
	hideAll();
	document.getElementById(div).style.display = "block";
	document.getElementById(lnk).className = cssClassName + " CE_selcted";
	window.scrollTo(0, 1000);
}
