View Single Post
Old 01-13-2005, 06:20 AM  
celebx
Confirmed User
 
Join Date: Jul 2001
Location: The Netherlands
Posts: 197
<script language="Javascript" type="text/javascript">
function functionname() {
alert();
w.focus();
}

function openWindow(url) {
w=window.open('about:blank');
w.document.open();
w.document.write('<html>' +
'<head><title></title></head>' +
'<body style="padding:0px;margin:0px;border:groove 2px;">' +
'<iframe src="' + url + '" name="displayframe" frameborder="0" style="width:100%;height:100%;" onload="window.opener.functionname()"></iframe>' +
'</body></html>');
w.document.close();
}

openWindow('http://www.google.com/');
</script>
__________________
Message me for more info: ICQ 8322641 (@gmail.com).

Last edited by celebx; 01-13-2005 at 06:23 AM..
celebx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote