1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <html>
<head>
<meta http-equiv="Content-Language" content="en" />
<meta name="GENERATOR" content="PHPEclipse 1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>title</title>
<script language="javascript">
<!--
function init(){
var iframe = document.getElementById('advert');
iframe.onmouseover = function (){
iframe.height=300;
}
iframe.onmouseout = function (){
iframe.height=40;
}
}
-->
</script>
</head>
<body onload="init();">
<iframe id="advert"></iframe>
</body>
</html> |