function zoomIn(node, name) {
url = node.href;
zoomedin = window.open('', 'mywin', "status=1,width=800,height=600");
zoomedin.document.write ("<html><head><title>"+name+"</title></head><body style='margin:0;padding:0;'><img src='"+url+"' /></body></html>");
zoomedin.document.close();
return false;
}
