hi vasilek
did you check out the link.
innerWidth etc. does return a value in NN!
try them out
<html>
<body>
<script language="javascript">
//tested in NN and recieved 1014*605
var myWidth = window.innerWidth;
var myHeight = window.innerHeight;
//tested IE 6.0 1024* res and recieved 995*587 for width output
//var myWidth = document.body.clientWidth;
//var myHeight = document.body.clientHeight;
alert(myWidth +" "+myHeight);
</script>
</body>
</html> _______________________________________________
{ str = "sleep is good for you. sleep gives you the energy you need to function";
ptr = /sleep/gi;Nstr = str.replace(ptr,"coffee"
;alert(Nstr); }
_______________________________________________
for the best results to your questions: FAQ333-2924
has you're questio