function PosicionaJanela(width,height) {
 window.resizeTo(width,height);
 window.moveTo((screen.availWidth-width)/2, (screen.availHeight-height)/2);
}

function AbreVideo(url) {
   window.open(url,'_blank','width=354,height=295,scrollbars=no,resizable=no').focus()
}