範例
將以下程式拷貝回您的網頁
<script>
<!--
function MakeAnotherWindow(imageName,imageHeight,imageWidth){
myFloater=window.open("","myWindow",
"width="+imageWidth+",height="+imageHeight);
myFloater.location.href=imageName;
}
//-->
</script>
<a href="tw.html"
onMouseover="MakeAnotherWindow('v11.html',80,250)"
onMouseout="myFloater.close()">滑鼠移到這理會開啟一個視窗</a>