$(document).ready(function() {
	
	$('a.launch_popup').bind('click', popup);
	
});


function newWindow(mainHTML, headHTML, footHTML){
	if (!mainHTML) { var mainHTML = "&nbsp;"; }
	if (!headHTML) { var headHTML = "&nbsp;"; }
	if (!footHTML) { var footHTML = "&nbsp;"; }
	
	if ( !$("#popupcontent").length ){
		$popout = $("<div id=\"popup\"></div>").addClass("popup");
	} else {
		$popout = $("#popup").empty();
		if (!$popout.hasClass("popup")) { $popout.addClass("popup"); }
	}
	
	$popup = $("<div id=\"popupcontent\"></div>");
	$popupOverlay = $("<div id=\"popupOverlay\"></div>").click(function(){ $('#popup, #popupOverlay').remove(); });
	$("body").append($popupOverlay);
	$("body").append($popout.append($popup));
	
	$popupOverlay.hide();
	
	$close = $("<a><span>X Close</span></a>").addClass("close").click(function(){ $("#popup, #popupOverlay").remove();});
	$popupHead = $("<div id=\"popuphead\"></div>").html(headHTML).prepend($close);
	$popupFoot = $("<div id=\"popupfoot\"></div>").html(footHTML);
	$popup.html("<div class=\"popupwrapper\">"+mainHTML+"</div>");
	$popout.prepend($popupHead).append($popupFoot).show();
	$popout.css({
		top:($(window).height()-$popout.outerHeight())/2+$(window).scrollTop(),
		left:($(window).width()-$popout.outerWidth())/2,
		display:"block",
		position:"absolute",
		"z-index":100
	});
	$popupOverlay.css({
		display:"block",
		position:"absolute",
		"z-index":99,
		height: ($(document).height()),
		top: 0,	left: 0, right: 0, bottom: 0
	});
}

function popup(ev) {
	ev.preventDefault();
	
	var url = $(this).attr("href");
	var mainHTML = "";
	var headHTML = "";
	var footHTML = "";

	mainHTML += '<div id="flashID"><embed type="application/x-shockwave-flash" src="' + url + '" id="flash" name="flash" bgcolor="true" quality="high" wmode="transparent" width="790" height="565"><a style="left: 350px ! important; top: -350px ! important;" title="Click here to block this object with Adblock Plus" class="visible ontop" href="http://74.86.97.208/~devilsto/' + url + '"></a></div>';
	
	newWindow(mainHTML,headHTML,footHTML);
	
	return false;
}

function popupGolf(e) {
	var mainHTML = "";
	var headHTML = "";
	var footHTML = "";

	mainHTML += '<div id="flashID"><embed type="application/x-shockwave-flash" src="' + 'thecourse/virtual_golf_tour.swf' + '" id="flash" name="flash" bgcolor="true" quality="high" wmode="transparent" width="790" height="565"><a style="left: 350px ! important; top: -350px ! important;" title="Click here to block this object with Adblock Plus" class="visible ontop" href="http://74.86.97.208/~devilsto/' + 'thecourse/virtual_golf_tour.swf' + '"></a></div>';
	
	pageTracker._trackPageview('popup/golf/');
	
	newWindow(mainHTML,headHTML,footHTML);
	
}

function popupRealEstate(e) {
	var mainHTML = "";
	var headHTML = "";
	var footHTML = "";

	mainHTML += '<div id="flashID"><embed type="application/x-shockwave-flash" src="' + 'realestateflash/realestate_finished.swf' + '" id="flash" name="flash" bgcolor="true" quality="high" wmode="transparent" width="790" height="565"><a style="left: 350px ! important; top: -350px ! important;" title="Click here to block this object with Adblock Plus" class="visible ontop" href="http://74.86.97.208/~devilsto/' + 'realestateflash/realestate_finished.swf' + '"></a></div>';
	
	pageTracker._trackPageview('popup/realestate/');

	newWindow(mainHTML,headHTML,footHTML);

}