<html>
<head>
<title>popup window using javascript</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
function WindowOpen() {
msg=window.open('http://www.net-ads.com', 'Sample', 'toolbar=no',
'location=no',
'directories=no',
'status=yes',
'menubar=yes',
'scrollbars=yes',
'resizable=no',
'copyhistory=yes',
'width=0','height=0');
}
//-->
</SCRIPT>
</head>
<body onLoad=WindowOpen()>
</body>
</html>
|