// JavaScript Document

charge = false;
window.onload = function() {
	charge = true;
	//setTimeout(appelFlash, 1000);
	//thisMovie("hpvid").documentLoad();
}

function appelFlash()
{
	if(charge)	thisMovie("hpvid").documentLoad();
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	}
	else {
		return document[movieName];
	}
}
