// DETECTOR DE BROWSER //
var dom = document.getElementById ? true:false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true:false;
var ACTUAL_FONTSIZE = 11;
var SMALLEST_FONTSIZE = 10;
var LARGEST_FONTSIZE = 16;


// Status //

function setStatus(strText){
	window.status = (strText) ? strText : "";
	return true;
}


// Cancelar selección de la página //

function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


