|
Paste this section within the HEAD tags
<script language="javascript">
<!--
// Written & created by Shivaji Basu
// Copyright www.shivbasu.com
// Use this script at your own risk
// To use his script, you MUST leave this disclaimer & credit as it is.
var browser = '';
var entrance = '';
// browsercheck step1
browser = 'one';
//-->
</script>
<script language="javascript1.2">
<!--
// browsercheck step2
browser = 'oneone';
//-->
</script>
<script language="javascript">
<!--
if (browser == 'oneone') entrance = 'yes';
if (browser == 'one') entrance = 'no';
function maxsize(){
if(entrance=='yes'){
var W=screen.width;
var H=screen.height;
self.resizeTo(W,H);
}
}
//-->
</script>
Paste this part within the OPENING Body tag for Auto execute
<BODY onload="maxsize()" background="" bgcolor="" .....>
// Fill in the Background Image URL, BG color etc as normal
|