// JavaScript Document
<!-- Activate Cloaking Device

// Used to display the browser name/version if JavaScript1.2 is not supported
var browser=navigator.appName + " " + navigator.appVersion;
// Though set in the JS1.2 code, these variables are declared here to avoid errors in lesser browsers
var width=null;
var height=null;
//inizio
var row1='<table BORDER=0 CELLPADDING=0 CELLSPACING=0>';
var row2='<tr><td width="50%" background="images/bg.gif" ><img src="images/px1.gif" width="1" height="1" alt="" border="0"></td> ';
var row3='<td valign="bottom" background="images/bg_left.gif" ><img src="images/bg_left.gif" alt="" width="17" height="16" border="0"></td>';
var row4='<td width="7">&nbsp;</td><td >';
var row5='<CENTER>';
var row6="<FONT SIZE='+1'><B>"+browser+"</B></FONT><BR><BR>";
var row7="<FONT SIZE='+1'><B>does not support JavaScript1.2.</B></FONT></CENTER>";
//finale
var row8='</td>';
var row9='<td valign="bottom" background="images/bg_right.gif"><img src="images/bg_right.gif" alt="" width="17" height="16" border="0"></td>';
var row10='<td width="50%" background="images/bg.gif"><img src="images/px1.gif" width="1" height="1" alt="" border="0"></td></tr>';
var row11='</tr></table>';
var row12="<CENTER>";
var row13="<FONT SIZE=\'+1\'><B>"+browser+"</B></FONT><BR><BR>";
var row14="<FONT SIZE=\'+1\'><B>does not support JavaScript1.2.</B></FONT></CENTER>";

var right_browser=false;
// Called by Requirements button
function aboutScheme()
   {
   alert("\nThis example uses screen.height & screen.width to grab the screen resolution.\n\nThese were introduced in JavaScript1.2.");
   }
// Called by View Source button - displays text file of source.
function viewSource()
   {
   alert("\nA text file with source will be loaded to the full window.\n\nUse your browser BACK button to return to the examples.");
   top.window.location.href="js-wid3.txt";
   }
// Deactivate Cloaking -->
