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
| <html>
<head>
<script type="text/javascript">
function actualNextSibling(el) { // needed to smooth out default firefox/IE behavior
do { el = el.nextSibling } while (el && el.nodeType !== 1);
return el;
}
</script>
</head>
<body>
<div onclick="actualNextSibling(this).style.display='block'; this.style.display='none'">
<img src="http://espacehd.com/uploads/uh.png" alt="splash" style="cursor: pointer" />
</div>
<div style="display: none">
<iframe src="http://www.putlocker.com/embed/DD6FA59B823BC96B" width="670" height="360" frameborder="0" scrolling="no"></iframe>
</div>
</body>
</html> |