function flash (movie,w,h)
{
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width="+w+" height="+h+">")
document.write("<param name='movie' value='"+movie+".swf' />")
document.write('<param name="quality" value="high" />')
document.write("<embed src='"+movie+".swf' width='"+w+"' height='"+h+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed>")
document.write('</object>')
}

function abrir(url,width,height,janela,scroll)
{ x = (640 - width)/2, y = (480 - height)/2;
    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
window.open(url, janela, 'width='+width+',height='+height+',scrollbars='+scroll+',location=no,status=no,resizable=no,directories=no,menubar=no,titlebar=no,toolbar=no,screenX='+x+',screenY='+y+',top='+y+',left='+x);
}
