
|
|
Source code |
1 2 3 4 5 6 7 8 |
<script type='text/javascript'>
<!--
function openPopup(url,width,height)
{
window.open(url, 'popupWindow', 'width=' + width + ', height=' + height + ', scrollbars=yes, resizable=no, menubar=no, location=no, status=no, screenX=100, screenY=100, top=100, left=100');
}
//-->
</script>
|
|
|
Source code |
1 |
<a href="javascript:openPopup('name.html','640','480')">Linkname</a>
|
|
|
Source code |
1 |
<a href="#" onClick="openPopup('name.html','640','480')">Linkname</a>
|
This post has been edited 2 times, last edit by "Tsu_G_" (Apr 10th 2006, 8:00pm)