var message="SORRY! This feature is disabled.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

var Count = 0; 
var Text = "efenbeONLINE :: A Food Network Food and Beverage Industry FnB Alert"; 
var Speed = 90; 
var timerID = null; 
var TimerRunning = false; 
var i = 0; 
while (i ++ < 140) 
Text = " " + Text; 
function Scroll(){ 
window.status = Text.substring(Count++, Text.length); 
if (Count == Text.length) 
Count = 0; 
timerID = setTimeout("Scroll()", Speed); 
TimerRunning = true; 
} 
function Start(){ 
Stop(); 
Scroll(); 
} 
function Stop(){ 
if(TimerRunning) 
clearTimeout(timerID); 
TimerRunning = false; } 
Start(); 





function openPopUp(url,name,wt,ht)
{
              ht=parseInt(ht)+50;
              wt=parseInt(wt)+50;
window.open(url, name, 'toolbar=no,location=no, directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,top=0,left=0,width='+wt + ',height='+ht); 
     
}

