/// 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;
}



// Nueva Ventana //

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow(url, nombreventana, parametros) {
popupWin = window.open(url, nombreventana, parametros)
}

// 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
//}
