function resize() {
	h=(window.innerHeight)?window.innerHeight:document.getElementById('temp').clientHeight;
	w=(window.innerWidth)?window.innerWidth:document.getElementById('temp').clientWidth;
	h=(h==0)?document.body.offsetHeight:h;
	w=(w==0)?document.body.offsetWidth:w;
	h=parseInt(h); w=parseInt(w);
	img=document.getElementById('mainContent');
	if (img) {
		//alert(img.style.height);
		document.getElementById('mainContent').style.height=(h-280)+'px';
		document.getElementById('mainContent').style.visibility='visible';
		//alert(img.style.height);
		//alert('alt: '+h+' | ample: '+w);
	}
}
function refreshTweets() {
	document.getElementById('related_tweets').innerHTML='Cargando ...';
	cnt=$('#related_tweets').load('/wp-content/themes/default/inc/printme_tweets.php?tag='+tag+'&n='+num, function() {
		$(this).fadeIn('slow', function() {
			setTimeout('refreshTweets()',60000);
		});
	});
}
