
// Sets a DeepLink
function getUrl(type) {
    if (type == "adserver") {
		return "http://disney.go.com/partners/hauntedholidays/";
	}
	
	if (type == "homePageAd") {
		return "http://disney.go.com/partners/hauntedholidays/hauntedholidays.html";
	}
	
	if (type == "homeTitle") {
		return "Haunted Holidays | Halloween | Disney";
	}
}

