// ADD TO FAVOURITES

var url="http://www.click2move.co.uk/"
var title="Click2move.co.uk - commission free selling and letting"

function addFave() {
	if (document.all) {
		window.external.AddFavorite(url,title);
	} else {
		window.location = "/add-fave.asp";
	}
}

function openurl(width, height,url) {
	picWin = open(url, "popup", "width=" + width + ",height=" + height + ",toolbar=no,directories=no,status=no,location=no,scrollbars=yes,resizable=no,menubar=no");
}


self.name = "main";
function openWin(width, height, URL) {

	go = window.open("","popup","toolbar=no,width=" + width + ",height=" + height + ",directories=no,status=no,location=no,scrollbars=yes,resizable=no,menubar=no");
	if(go!=null) {
			if(go.opener == null) {
					go.opener = self;
			}
			go.location.href = URL+".asp";
				}
	}
