Para abrir una "ventana pequena" por ejemplo puedes usar este código en html (tienes que cambiar "height", "width"):
Código:
<head>
<script language="JavaScript" type="text/javascript"><!--
function ventana(url) {
var fens = window.open(url, "fens", "height=600,width=800,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=1,toolbar=0");
}
//--></script>
</head>
<body>
<a href="#" title="xxx" onclick="ventana('http://www.google.com')">123</a>
<body>