// ActionScript Document


function abrir(pag, nombre, w, h)
{

newwindow=window.open(pag, nombre,'width='+w+',height='+h+',scrollbars=yes')

newwindow.creator=self

}

function abrirVentanaFull(url) {
window.open(url, '', 'fullscreen=yes, scrollbars=no, location=no,menubar=no,status=no,toolbar=no,resizable=yes,');
}





