// Addon Sakid

function popupfs(url) 
{
 params  = 'width='+screen.width;
 params += ', height='+screen.height;
 params += ', top=0, left=0'
 params += ', fullscreen=yes';

 newwin=window.open(url,'windowname4', params);
 if (window.focus) {newwin.focus()}
 return false;
}

function fixIE6flicker(fix) {
            /*Use Object Detection to detect IE6*/
            var  m = document.uniqueID /*IE*/
            && document.compatMode  /*>=IE6*/
            && !window.XMLHttpRequest /*<=IE6*/
            && document.execCommand ;
 
            try{
                        if(!!m){
                                    m("BackgroundImageCache", false, fix) /* = IE6 only */ 
                        }
                        
            }catch(err){};
}
fixIE6flicker(true);
