function sendToFlash(cmdName,frameNum) {
	var tab = document.getElementsByTagName('OBJECT');
	var obj = tab[tab.length-1];
	if (obj){
		if(cmdName=='GotoFrame'){
			try {
				eval('obj.'+cmdName+'('+(frameNum)+')');
			} catch (e) {}
		}else{
			eval('obj.'+cmdName+'()');
		}
	}
} 
function popUp(theURL,winName,features) {
	var lien = document.getElementById(theURL.split('.')[0]);
	if(!lien)
		window.open('idtf?id_flash='+theURL.replace('.htm',''),winName,features);
	else {
		var href = lien.href; 
		window.location.href=href;
	}
}
