﻿// 
// Flash Page Transition
// 
/////////////////////////
// CSS:
//#flash {
// position: absolute;
// top: 0px;
// left: 0px;
// width: 100%;
// height: 100%;
// display: none;
// z-index: 100;
// }
/////////////////////////
// Link Format:
// <a href="/contact/" onclick="flashTransition(this.href); return false;">
/////////////////////////

function thisMovie(movieName) {
	var movieName = movieName == null ? "transition" : movieName;
	if (navigator.appName.indexOf ("Microsoft") !=-1) {
		return window[movieName]
	} else {
		return document[movieName]
	}
}
function movieIsLoaded (movieName) {
	if (typeof(movieName) != "undefined") {
		return movieName.PercentLoaded() == 100;
	} else {
		return false;
	}
}
function clearTransition() {
	document.getElementById("flash").style.display = "none";
	document.getElementById("flash").innerHTML = "";
}

function flashTransition(page){
	root = "citypalace/"; // "";
	document.getElementById("flash").style.display = "block";
	document.getElementById("flash").innerHTML = "<embed name='transition' src='/"+root+"files/transition.swf?page="+page+"' id='transition' quality='high' scale='exactfit' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' wmode='transparent' width='100%' height='100%'></embed>";
}