var swfName = "youTube";

function sendToAS2(){
	console.log(":::FUNCION AS2::"+movieById(swfName)+","+arguments[0]);
	//if(movieByName(swfName)) movieByName(swfName).receieveAS2(arguments[0]);
	if(movieById(swfName)) movieById(swfName).receieveAS2(arguments[0]);
}
function sendToAS3(){
	console.log(":::FUNCION AS3::"+movieById(swfName)+","+arguments[0]);
	//if(movieByName(swfName)) movieByName(swfName).recieveAS3(arguments[0]);
	if(movieById(swfName)) movieById(swfName).recieveAS3(arguments[0]);
}
function isExternalAvailable(){
	console.log(":::IS EXTERNAL");
	return true;
}
function movieById(id){
	return document.getElementById(id);
}
function movieByName(name){
	console.log("###"+name);
	return (navigator.appName.indexOf("Microsoft") != -1)?window[name]:document[name];
}
