<html>
<head>
<title>test</title>
</head>
<body>
<script language="JavaScript">
<!--
function Popup()
{
// open the popup window
var popupURL = "popup.html";
var popup = window.open(popupURL,"test",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=230,height=185');
popup.location = popupURL;
popup.focus();
}
Popup();
// -->
</script>
</body>
</html>