<!--  
// Determine Screen Size & Zoom Factor for Images
//  Resolution -  Zoom - Style
//             - 0.250 -  11		
//  544 x  384 - 0.330 -  10
//  640 x  480 - 0.400 -   9
//  720 x  480 - 0.425 -   8
//  848 x  480 - 0.465 -   7
//  800 x  600 - 0.500 -   6
// 1024 x  768 - 0.640 -   5
// 1152 x  864 - 0.720 -   4
// 1280 x  800 - 0.733 -   3
// 1280 x 1024 - 0.826 -   2
// 1400 x 1050 - 0.875 -   1
// 1600 x 1200 - 1.000 -   0
var w=self.screen.width;
var h=self.screen.height;
//var w=self.screen.availWidth;
//var h=self.screen.availHeight;
//var Zoom=(w/1600+h/1200)/2;
//w=1280;
//h=800;
var Zoom=Math.floor((w/1600+h/1200)/2*1000)/1000;
var StyleNo=0;
if      (Zoom >= 1.000) StyleNo=0;
else if (Zoom >= 0.875) StyleNo=1;
else if (Zoom >= 0.826) StyleNo=2;
else if (Zoom >= 0.733) StyleNo=3;
else if (Zoom >= 0.720) StyleNo=4;
else if (Zoom >= 0.640) StyleNo=5;
else if (Zoom >= 0.500) StyleNo=6;
else if (Zoom >= 0.465) StyleNo=7;
else if (Zoom >= 0.425) StyleNo=8;
else if (Zoom >= 0.400) StyleNo=9;
else if (Zoom >= 0.330) StyleNo=10;
else StyleNo=11;
//Zoom=.64;
//StyleNo=3;
//alert(StyleNo);
//-->
