<html>
<head><title>Popup Window</title></head>
<body>
<table border="1">
<tr>
<td>Judul1</td><td>Judul2</td>
</tr>
<tr>
<td>Isi1</td>
<td>isi2</td>
</tr>
</table>
</body>
</html>
file main.php<a href="javascript:openwindow();">Popup</a>
<script type="text/javascript">
function openwindow()
{
window.open("popup.php","mywindow","menubar=1,resizable=1,width=600,height=400");
}
</script>