function FFull(strURL) {
 var nWidth = 800; var nHeight = 600; 
 var nScreenWidth = (screen.width-nWidth)/2;
 var nScreenHeight = (screen.height-nHeight)/2;
  window.open("flash/"+strURL+"pixel.htm", "pixeljeans", "width="+nWidth+", height="+nHeight+", left="+nScreenWidth+", top="+nScreenHeight+", scrollbars=yes");
}

function FResize(){
 self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight);
}

function FMouseDisabled(){

 if (window.Event) 
  document.captureEvents(Event.MOUSEUP); 

 function nocontextmenu() { 
  event.cancelBubble = true 
  event.returnValue = false; 
  return false; 
 }

 function norightclick(e){ 
  if (window.Event) { 
   if (e.which == 2 || e.which == 3) 
    return false; 
   } else if (event.button == 2 || event.button == 3){ 
    event.cancelBubble = true 
    event.returnValue = false; 
    return false; 
   } 
 } 

 if (document.layers) { 
  document.captureEvents(Event.MOUSEDOWN); 
 } 
 
 document.oncontextmenu = nocontextmenu; 
 document.onmousedown = norightclick; 
 document.onmouseup = norightclick; 
 
}

function openBR(caminho,janel,parametros){
 window.open(caminho,janel,parametros);
}

function FUnblock(strName, nWidth, nHeight){
 
 var strFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+nWidth+'" height="'+nHeight+'" id="'+strName+'">';
 strFlash += '<param name="allowScriptAccess" value="sameDomain" />';
 strFlash += '<param name="movie" value="'+strName+'" />';
 strFlash += '<embed src="'+strName+'.swf" width="'+nWidth+'" height="'+nHeight+'" name='+strName+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
 strFlash += '</object>';
 
 document.write(strFlash); 
 
}

