

var isIE = document.all ? true : false;
var activeTimeout;

if (!isIE) {
    document.captureEvents(Event.MOUSEMOVE);
    document.onmousemove = mousePos;
    var netX, netY;
}

function posX() {
    if (isIE) {
      tempX = document.body.scrollLeft + event.clientX;
    }
    if (tempX < 0) {
      tempX = 0;
    }
    return tempX;
}

function posY() {
    if (isIE) {
      tempY = document.body.scrollTop + event.clientY;
    }
    if (tempY < 0) {
     tempY = 0;
    }
    return tempY;
}

function mousePos(e) {
    netX = e.pageX;
    netY = e.pageY;
}

function tooltipShow(pX, pY, src) {
    if (pX < 1) {
        pX = 1;
    }
    if (pY < 1) {
        pY = 1;
    }
    if (isIE) {
        document.all.tooltip.style.visibility = 'visible';
        document.all.tooltip.innerHTML = src;
        document.all.tooltip.style.left = pX + 'px';
        document.all.tooltip.style.top = pY + 'px';
    } else {
        document.getElementById('tooltip').style.visibility = 'visible';
        document.getElementById('tooltip').style.left = pX + 'px';
        document.getElementById('tooltip').style.top = pY + 'px';
        document.getElementById('tooltip').innerHTML = src;
    }
}

function tooltipClose() {
    if (isIE) {
        document.all.tooltip.innerHTML = '';
        document.all.tooltip.style.visibility = 'hidden';
    } else {
        document.getElementById('tooltip').style.visibility = 'hidden';
        document.getElementById('tooltip').innerHTML = '';
    }
    clearTimeout(activeTimeout);
    window.status = '';
}

function tooltipLink(tooltext, statusline) {
    text = '<table cellspacing="0" cellpadding="4" border="0">';
    text += '<tr><td class="tooltip">' + tooltext + '</td></tr></table>';
    if (isIE) {
        xpos = posX();
        ypos = posY();
    } else {
        xpos = netX;
        ypos = netY;
    }
    activeTimeout = setTimeout('tooltipShow(xpos - 110, ypos + 15, text);', 300);
    window.status = statusline;
}

document.write('<div id="tooltip" style="position: absolute; visibility: hidden;"></div>');




/*-----------------------------------------------------------------------------------------------*/
		

/**
 * 			CAL::CalCalendar::Actions
 */
		function newCalendar() {
			var url = '/NdSite/Ctrl/CAL/newCalendar/';
			window.open(url,'','height=400, width=400'); 
		}

		function editCalendar(calendar) {
			var url = '/NdSite/Ctrl/CAL/editCalendar/' + calendar;
			window.open(url,'','height=400, width=400'); 
		}

		function delCalendar(calendar) {
			if(confirm("Seguro que desea eliminar este calendario?")) {  
				document.location.href = '/NdSite/Ctrl/CAL/delCalendar/' + calendar;
			}    			
		}

		
/**
 * 			CAL::CalCategory::Actions 
 */		
		function newCategory(calendar) {
			var url = '/NdSite/Ctrl/CAL/newCategory/' + calendar;
			window.open(url,'','height=400, width=400'); 
		}
		
		function editCategory(calendar) {
			var url = '/NdSite/Ctrl/CAL/editCategory/' + calendar;
			window.open(url,'','height=400, width=400'); 
		}

		function delCategory(calendar) {
			if(confirm("Seguro que desea eliminar esta categoria?")) {  
				document.location.href = '/NdSite/Ctrl/CAL/delCategory/' + calendar;
			}  			
		}

	
/**
 *			C A L : : C a l E v e n t : : A c t i o n s .
 */

		function newEvent(calendar) {
    		var url = '/NdSite/Ctrl/CAL/newEvent/' + calendar;
    		window.open(url,'','height=480, width=400');
		}
		
		function displayEvent(event) {
			var url = '/NdSite/Ctrl/CAL/displayEvent/' + event;
    		window.open(url,'','height=480, width=400');
		}
		
		function editEvent(event) {
			var url = '/NdSite/Ctrl/CAL/editEvent/' + event;
    		window.open(url,'','height=480, width=400');
		}
		
		function delEvent(event) {
			if (confirm("Seguro que desea eliminar este evento?")) {
				document.location.href = '/NdSite/Ctrl/CAL/delEvent/' + event;
			}		
		}
		
		
		/**
		 * JavaScript Calendar para seleccion de "Ir a..."
		 */
		function popupCalendar(action) {
			window.open(action,'','height=200, width=200'); 
		}
		
		
		function updateCalendarMainContent(location) {
			location.reload();
		}
		

