Please look at the following code, and tell me why the onload function is not called.
<html>
<body>
<script type="text/javascript">
location = 'http://www.youtube.com/watch?v=FO52eCNTdRc&feature=popt14us02';
function oknow(){
alert("window onload");
}
window.onload = oknow;
</script>
</body>
</html>
Thanks a lot!

