// Windows Messenger
function msn (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=508, height=280, top=85, left=140";
window.open(pagina,"",opciones);
}

// Selecciones
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


// Alertas MSN
var vbphrase = {
	"you_must_be_logged_into_msn_before_doing_this" : "Debes estar en sesión en el MSN Messenger o Windows Messenger antes de realizar esta accion.",
	"msn_functions_only_work_in_ie" : "La funcion de MSN solo funciona cuando se ejecuta desde Internet Explorer (MSIE)."
};


function handleError(msg, url, h)
{
	if (msg.indexOf('8100031e') != '-1')
	{
		alert(vbphrase["you_must_be_logged_into_msn_before_doing_this"]);
		return true;
	}
	else
	{
		return false;
	}
}

window.onerror = handleError;