// JavaScript Document
function revealModal(divID)
{
    window.onscroll = function () { document.getElementById(divID).style.top = document.body.scrollTop; };
				//alert(document.getElementById(divID).style.top);
    //Se Below Line [specially used here for modal popup]
	//Note: U may use anything to get the DIV, visible (eg: 'block').
	document.getElementById(divID).style.display = "block";
    document.getElementById(divID).style.top = document.body.scrollTop;
}

function hideModal(divID)
{
    document.getElementById(divID).style.display = "none";
}

function closeWin()
{
	document.getElementById(divID).style.display = "none";
}

