var height=screen.height;
var width=screen.width;


if (navigator.platform.indexOf("Mac")>-1) { // if Mac
		
		if (navigator.appName == 'Netscape') {
		          adjWidth =  15;                  //  adjWidth =  0;adjHeight = 0;
		          adjHeight = 128;
		 }
		 else { //if MIE: add necessary px
		          adjWidth =  10;	      // adjWidth =  5;    adjHeight =  100;
		          adjHeight =  28;
		 }
		//   window.resizeTo(785+adjWidth, 472+adjHeight);
		
		window.moveTo(0,0)					
		window.resizeTo((width-adjWidth),( height-adjHeight));
	}

	if (navigator.platform.indexOf("Win")>-1) { // if Win
		
		if (navigator.appName == 'Netscape') {
		          adjWidth =  15;                  //  adjWidth =  0;adjHeight = 0;
		          adjHeight = 128;
		 }
		 else {    //if MIE: add necessary px        
		          adjWidth =  1;                   //  adjWidth =  16;  adjHeight =  123;
		          adjHeight =  5;
		 }

		 // window.resizeTo(785+adjWidth, 472+adjHeight);

		 window.moveTo(0,0)					
		 window.resizeTo((width-adjWidth),( height-adjHeight));

		 } // made with iMac


function AleRt() {
if ((screen.width == 640) && (screen.height == 480)) 
alert("To view this site is required a video resolution of at least 800x600");
}

