

  // sample JavaScript function that displays an alert box
  function test() {
    alert("Yes, my user.js JavaScript file is working!");
  }

  //put your additional JavaScript code here ...






//funcao para carregar flash sem perguntas e com fundo transparente


function addSWF (URL, WIDTH, HEIGHT, TRANSPARENT)
{
document.write (' <object type="application/x-shockwave-flash" ');
document.write (' data="'+ URL +'" ');
document.write (' width="'+ WIDTH +'" height="'+ HEIGHT +'">');
document.write (' <param name="movie" value="'+ URL +'" />');
document.write (' <param name="quality" value="high" />');

if ( TRANSPARENT ) {
  document.write (' <param name="Wmode" value="Transparent" />'); 
}

if ( TRANSPARENT ) {
document.write (' Wmode = "transparent" ');
}

document.write (' </object>');

}