// memberes navigation
var stayOn=false;
var stayOnThisRequest=false;
function membersNavOn(win)
{
	var doc = (win) ? win.document : document;
	doc.getElementById("membersnavParent").style.visibility = 'visible';
}

function membersNavOff(win)
{
	
	var doc = (win) ? win.document : document;
	var memNP = doc.getElementById("membersnavParent");
	if(memNP)
		memNP.style.visibility = 'hidden';
}

// ROLLOVER FUNCTIONS
function imgOn(imgName) {
    if (document.images) {
    	document[imgName].src = eval(imgName + "On.src");
	}
}
function imgOff(imgName) {
	if (document.images) {
    	document[imgName].src = eval(imgName + "Off.src");
	}
}


function titleOn(imgName, holder) {
    
	if(!holder)
	{	
		holder = 'lhsBoxTitle';
	}
	
	if (document.images) {
    	document[holder].src = eval(imgName + "On.src");
	}
}


// POPUP WINDOWS
function popupContent(url, width)
{
    if(!width)
    {
        width = 500;
    }
	var pop = window.open(url,'contentPopup','toolbar=yes,location=no,directories=no,menubar=yes,statusbar=yes,scrollbars=yes,resizable=yes,width='+width+',height=350,screenX=30,screenY=30,top=30,left=30');
	pop.focus();
}

function imageFullSize(url)
{
	
var pop = window.open(url,'imagePopup','toolbar=no,location=no,directories=no,menubar=no,statusbar=no,scrollbars=yes,resizable=yes,width=320,height=350,screenX=60,screenY=60,top=60,left=60');
	pop.focus();
}
