﻿
function hideShow(obj_id)
{
    var obj = document.getElementById(obj_id);
    if(obj)
    {
       if(obj.style.display == "none")
            obj.style.display = "block";
       else{
            obj.style.display = "none";
       }
    }
}

function outlookEvent(title, bDate, eDate)
{
    window.open("addEventOutlook.aspx?t=" + title + "&bD=" + bDate + "&eD=" + eDate, "myWindow", "width=2px,height=2px,menubar=no,titlebar=no,scrollbars=no,resizable=0,addressBar=no,toolbar=no");
}

/*This function changes the backgound images
of each td of the links*/
function changeTDImage (objectId, over, img1, img2)
{
	var mainURL = "images/";
	if(img1 != "" && img2 != "")
	    document.getElementById(objectId).src = (over == 1)? mainURL + img2: mainURL + img1;
}