// JavaScript Document
function hiddeMenu(){
	var oMenuLeft=document.getElementById('left');
	var oContenido=document.getElementById('right');
	oMenuLeft.style.visibility='hidden';
	oMenuLeft.style.display='none';
	oContenido.style.float='none';
	oContenido.style.width='98%';
}
function cmMailTo(sCorreo){
	var sCorreo=sCorreo+'@listenup.com.mx';
	document.write('<a href="mailto: '+sCorreo+'">'+sCorreo+'</a>');
}
window.onload = function(){
	//alert('load complete');
	//ReplaceAllTextareas();
	try {
		var hd=document.getElementById('image_live')
		hd.style.width='240px';
	}catch(e){};
};
function ReplaceAllTextareas() {
	// replace all of the textareas
	var allTextAreas = document.getElementsByTagName("textarea");
	for (var i=0; i < allTextAreas.length; i++) {
		var oFCKeditor = new FCKeditor(allTextAreas[i].name);
		oFCKeditor.BasePath = "fckeditor/";
		oFCKeditor.ToolbarSet = 'Basic';
		oFCKeditor.ReplaceTextarea();
	}
}
