Ope = (!document.layers) && (navigator.userAgent.indexOf("Opera")!=-1)   ? true : false;


if (!Ope) { 

function GetCookie(name) {
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while (i<clen) {
var j=i+alen;
if (document.cookie.substring(i,j)==arg)
return "here";
i=document.cookie.indexOf(" ",i)+1;
if (i==0) break;
}
return null;
}
var visit=GetCookie("CookieIndex");
if (visit==null){
var expire=new Date();

window.location.reload();
expire=new Date(expire.getTime()+60000);

document.cookie="CookieIndex=here; expires="+expire;
}
}

if (Ope) {
alert("Using the Opera web browser may cause \r some pages to load improperly.\r \r Make sure to hit your refresh button \r to check for up to the minute content."); 
}