A tu botón le agregas la acción
on (release){
getURL ("javascript
:Abrir_Ventana('pagina.html','563','40 0')");
}
Y a pagina.html le agregas el siguiente script en el encabezado
<script language="JavaScript">
var winName="titulo"
function Abrir_Ventana(theURL,w,h) {
var windowprops ="top=0,left=0,toolbar=no,location=no,status=no , menubar=no,scrollbars=no, resizable=no,width=" + w + ",height=" + h;
window.open(theURL,winName,windowprops);
}
</script>
Para que esa página se redireccione a
www.guegamedios.com simplemente le colocas un META TAG como este
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://www.guegamedios.com">