/*
 * LorenaAngulo.com - Std page support scripts
 * (c)2009, Lorena Angulo
 */
 
var message = "Function Disabled";
 
function rtclickcheck(keyp){
    if (navigator.appName == "Netscape" && keyp.which == 3){
	 	alert(message);
		return false; 
	} 
	if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
	 	alert(message);
		return false;
	}
}
 
document.onmousedown = rtclickcheck;

function menuCellHover(t,h) {
  if (h) {
    t.style.backgroundColor = '#7a8599';
	} else { 
	t.style.backgroundColor = '';
	}
}

function popWin(src) {
    win = window.open(src,"","top=0,left=0,width=800,height=640,toolbar=no,\
	location=no,directories=no,statusbar=no,menubar=no,scrollbars=no,resizable=yes")
}