Popup frame

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>


<Script Language="JavaScript">
<!– Script courtesy of http://www.web-source.net – Your Guide to Professional Web Site Design and Development
function load() {
var load = window.open('http://www.domain.com','','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}
// –>
</Script>

Carefully edit the text indicated in red to suit your needs.


Create the link to open your new window like this:
<a href="javascript:load()">Open Window</a>

</body>
</html>