// JavaScript Document
function setbgImage(id)
{
	 document.getElementById(id).style.backgroundImage   = "url(navbg2.PNG)";
}
function setbgDisImage(id)
{ 
	 document.getElementById(id).style.backgroundImage   = "url(navbgDis2.PNG)"; 
}

function getPopupWindow(url,name,width,height,scrollbars,resizeable)
{
            posX = screen.width;
            posX = (posX - width) /2;
            posY = screen.height;
            posY = (posY - height - 50) / 2;
    
            dest = "" + url;
            param = "width=" + width + ",height=" + height;
            param+= ",top="+posY+",left="+posX;

            if(scrollbars)
            {
                  param += ",scrollbars=yes";
            }

            else
            {
                  param += ",scrollbars=no";
            }

            if(resizeable)
            {
                  param += ",resizable=yes";
            }
            else
            {
                  param += ",resizable=no";
            }
            param += ",status=no,directories=no,menubar=no";
      
            myWindow = window.open(dest,name,param);
            myWindow.focus();
            return false;
}

;	
