// JavaScript Document
function resizeSWF(elAlto, idTag) {
		document.getElementById(idTag).style.height = elAlto+"px";
		document.getElementById(idTag).parentNode.style.height = elAlto+"px";
}
//
function isIE() {
	var _isIE = navigator.appName.indexOf("Microsoft") != -1;
	return _isIE;
}

function getFlashMovie(movieName) {
	return isIE() ? window[movieName] : document[movieName];
}

function swfClr(idSWF, clr) {
	var node = isIE() ? 0 : 1;
	getFlashMovie(idSWF.childNodes[node].id).change(clr);
}
