document.isTrellix = 1;

function tweNavbarPreload(imgSrc, imgObj) {
    if (document.images) {
        eval(imgObj+' = new Image()');
        eval(imgObj+'.src = "'+imgSrc+'"');
    }
}

function tweNavbarChangeImage(imgName, imgObj) {
    if (document.images) {
        document[imgName].src = eval(imgObj + ".src");        
    }
}

function openWin(new_url) {
	openWindow=window.open(new_url, 'eliteWin',
		'location=yes,status=yes,resizable=yes,scrollbars=yes,width=500,height=500');
	openWindow.focus();
}