just use dreamweaver. change behavior so a new window could pop up.
or try using this code.
function small_window(myurl) {
var newWindow;
var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=n o,location=no,directories=no,width=300,height=200' ;
newWindow = window.open(myurl, props);
}
call this function with onclick...