Problema 1.
<html>
<head>
</head>
<body>
<script type="text/javascript">
function abrirVentana()
{
var ventana=open('','','width=600,height=300');
}
</script>
<form>
<input type="button" value="abrir ventana" onClick="abrirVentana()">
</form>
</body>
</html>
Retornar al menu |