﻿// JScript File
function rollover(place)
{
   var tplace = document.getElementById(place);
   tplace.style.backgroundColor="#EDF1F5";    

}
function rollout(place)
{
    var tplace = document.getElementById(place);
    tplace.style.backgroundColor="#FFFFFF";
}
function popitup(url)
{
	newwindow=window.open(url);
	if (window.focus) {newwindow.focus()}
	return false;
}
function NavigateToAdminSection(x,y)
{
   //Using indexes for the frames because the frame name does not work in Firefox.
    //Menu
    if (x == "Website")
    {
    popitup('../');
    }else if (x == "Idea")
    {  
    modalWindow('components/idea.aspx','idea','200','400');
    }else{
   window.top.frames[1].location = x + "/Menu.aspx?SectionId=" + y;
    //body
   window.top.frames[2].location = x + "/Default.aspx?SectionId=" + y;
   }   
   parent.window.collapseSide(0);
   
}
function modalWindow(url, name, width, height)
{
    if (!width)
        width = "300px";
    if (!height)
        height = "300px";
        
        window.open(url, name, 
        'height=' + height + ',width=' + width + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,modal=yes');
}