//[ADD_TO_FAV]

function addfav(url,title) {
if(url=='')url=location.href;if(title=='')title=document.title;
var agt=navigator.userAgent.toLowerCase();
if(agt.indexOf("opera")!= -1) alert('Press CTRL-T to add this page to favorites');
else if(document.all) window.external.AddFavorite(url,title);
else if(window.sidebar) window.sidebar.addPanel(title,url, "");
}

//[END]
//[OPENHTML]

function openhtml(url,lo,me,re,sc,st,to,w,h,t,l)
{
 if(t<0 || l<0){l=Math.round((screen.availWidth-w)/2);t=Math.round((screen.availHeight-h)/2)-25;}
 aw=window.open(url,'_blank','toolbar='+to+',menubar='+me+',scrollbars='+sc+',resizable='+re+',status='+st+',location='+lo+',width='+w+',height='+h+',top='+t+',left='+l);
 aw.opener=self;aw.focus();return false;
}

//[END]
