if (top.location != location) top.location.href = location.href; 

var defStatus = 'Tool Junkie';

function setStatus(newStatus) 
{ 
    if (!newStatus) 
        window.status = defStatus;
    else
    window.status = newStatus;
    
    return true;
}

function popup(file, windowname, width, height)
{
    window.open (file, windowname, 'width='+width+',height='+height+',directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');
}
