Macabre, Функция
function open_window(link,w,h) //opens new window
{
var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
newWin = window.open(link,"newWin",win);
newWin.focus();
}
</script>ссылка
<a href="javascript:open_window('/ich.jpg','800','600')"><img alt="" width="100" border="0" src="/ich.jpg" /></a>