<!--
var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/

if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}

function getMyHTML(serverPage, objID) {
	var obj = document.getElementById(objID);
	xmlhttp.open("POST", serverPage);
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
			obj.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null);
}


function ocultarLeft(objID,objID2){
	document.getElementById(objID).className = (document.getElementById(objID).className != 'oculto'?'oculto':'visible'); 
	document.getElementById(objID2).className = (document.getElementById(objID2).className != 'inhaltLarg'?'inhaltLarg':'inhaltShort'); 
}
function Toggle(thediv) {
	if(document.getElementById(thediv).style.display=="block")
		document.getElementById(thediv).style.display="none";
	else
		document.getElementById(thediv).style.display = "block";
}
function ocultarSearch(frm1,frm2){
	document.getElementById('frm'+frm1).style.display = '';
	document.getElementById('frm'+frm2).style.display = 'none';
}
function getURL(id){
	window.location=id;
}
function loading(objID){
	document.getElementById(objID).style.display ="none"//="<img src='http://localhost:8700/peorblog/images/loading.gif' alt='' />";
	document.getElementById('loading').innerHTML="<img src='http://www.elpeorblog.com/images/loading.gif' alt='Cargando comentario' />";
}
//-->