// Setup
var so;
function setup() {
		so = new SWFObject("BoutiqueHomes.swf", "flashObject", "100%", "100%", "9.0.45", "#2f2f2f", true);
  		so.addParam("quality", "high");
		so.addParam("menu", "true");
    	so.addParam("wmode", "window");
    	so.addParam("allowFullScreen", "false");
    	so.addVariable("useRelativePath", "true");
        so.write("flashElement");
}
// Context Menu Operations
function makeBookmark() {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(document.title, document.URL,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite(document.URL, document.title);
	}
}
function reloadPage() {
	window.location.reload();
}
// General Operations
function changeHeight(newH) {
	document.body.style.background = "#2f2f2f";
	document.getElementById('flashElement').style.height = newH;
	document.getElementById('flashObject').height = newH;
}
function scrollToTop() {
	$.scrollTo(0, 600);
}
function scrollToGallery(y_pos) {
	$.scrollTo(y_pos, 600);
}
// Adwords
function trackEnquiryConversion(p) {
	if (document.getElementById('hiddenframe')) {
		var iframe = document.getElementById('hiddenframe');
		iframe.src = "conversions/" + p;
		iframe.reload();
	}
}