/*
*************************************
  Created by Laszlo Bejczi 2006
  Send me a mail if u could use this code. Anyway its free to reuse.
  fikusz01 at gmail dot com
*************************************
*/

function go(url) {
    window.location = url;
}

function Confirm(msg, hova) {
    var response = window.confirm(msg);
    if (response) { go(hova); }
}

function ConfirmOnly(msg) {
    return window.confirm(msg);
}

function make_this_start_page() {
}

function make_this_bookmark() {
    title = "Light House Real Estate";
    url = "http://lighthouseabudhabi.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
		return true;
    }
}