function popup(url, name, options)
{
    if (options == null)
    {
        options = "width=400,height=400,top=50,left=50,resizable=yes,scrollbars=yes"
    }
    
    var wNew = window.open(url, name, options);
    wNew.focus();
}

function specialKeyPress()
{
    var isValid = true;
    var keyCode = window.event.keyCode;
        
    switch (keyCode)
    {
        case 91:           // [
        case 93:           // ]
        case 37:           // %
        case 44:           // ,
            isValid = false;
            break;
    }    
        
    window.event.returnValue = isValid;
}

function hoverIn(img, src)
{
	if (loaded)
	{
		var section = document.all["section"];
		section.src = "Images/Sections/" + src + ".gif";
		img.src = "Images/NavButtons/" + src + "_over.gif";
	}
}

function hoverOut(img, src)
{
	if (loaded)
	{
		var section = document.all["section"];
		section.src = "Images/Sections/None.gif";
		img.src = "Images/NavButtons/" + src + ".gif";
	}
}

var loaded = true;

if (document.images)
{	/*
	menu spacer + items
	*/
	loaded = true;
}

var valueChanged = false;

function valueChange()
{
	valueChanged = true;
}