<html>
<head>
<script type="text/javascript">
function show_popup()
{
var p=window.createPopup()
var pbody=p.document.body
pbody.style.backgroundColor="lime"
pbody.style.border="solid black 1px"
pbody.innerHTML="This is a pop-up! Click outside the pop-up to close."
p.show(150,150,200,50,document.body)
}
</script>
</head>
<body>
<button onclick="show_popup()">Show pop-up!</button>
</body>
</html>
<SCRIPT>
function popup(x)
{
var nw=window.open("about:blank",'',"scrollbars=no,toolbar=no,status=no,resizable=no,width=150,height=150,minimizable=no")
nw.document.write("<html><head><title>"+x+"</title></head></html>");
nw.document.close();
}
</SCRIPT>
<input type="button" value="Button" name="B3" onmouseover="popup('Your pop up title')">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>echessdesign.com</title>
</head>
<body>
<a href="http://www.echessdesign.com" ONCLICK="window.open('blank1.htm', 'NewWindow','toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=635,height=260')">www.echessdesign.com</a>
</body>
</html>