// 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);
}

function addCount(caption,voteid) {
	$(document).ready(function(){
		$("#addcount span").load("application/dbscript.php?Submit=addCount&addCount="+caption+"&commentUser="+'JoseBedoya');
		document.getElementById(voteid).innerHTML = "<img src=\"http://ajaxrain.com/images/add_vote.gif\" border=\"0\" align=\"absmiddle\"/>&nbsp;Voted";
	});
} 