function playFlashVideo( s ) {
	if(document.getElementById("video"))
		thisMovie("video").playFlashVideo( s );
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	}
	else {
		return document[movieName]
	}
}

function delay(time,func){
	setTimeout(func,time);
};