
/*Begin Screen Resolution Detection - C. Germany 2000*/


function AlertWrongCGermanyResolution() {



         if((screen.width == 640) && (screen.height == 480)) 
         {

             alert("Uh Oh! Way too small. Your monitor\'s screen resolution has been detected as 640x480." +  
                   "This section will not display correctly at that setting. It has been coded for higher resolution." +
                   "Please change your screen resolution to 1024x768 so this section can be viewed properly. " +  
                   "Thank you  for visting NetworkingProgramming.com!");
         }



         else if((screen.width == 800) && (screen.height == 600))
         {
            alert("Uh Oh! A little too small. Your Monitor\'s screen resolution has been detected as 800x600." +
                  "This section will not display correctly at that setting. It has been coded for a " +
                  "higher resolution. Please change your screen resolution to 1024x768 so this section can " +
                  "be viewed properly. Thank you  for visting NetworkingProgramming.com!");
         }



         else if((screen.width == 1152) && (screen.height == 864))
         {
            alert("Uh Oh! A litle too big. Your screen resolution has been detected as 1152x864. " +
                  "This section might look a little small at that setting. If you can change your " +
                  "screen resolution to 1024x768, it might make things larger. If not, I hope you " +
                  "have good eyesight. Thank you for visting NetworkingProgramming.com!");
         }



         else if((screen.width == 1280) && (screen.height == 1024))
         {
            alert("Uh Oh! Too big. Your screen resolution has been detected as 1280x1024. This section " +
                  "will look pretty small at that setting. Please change your screen resolution to 1024x768. " +
                  "This will make things a lot larger. Thank you  for visting NetworkingProgramming.com!");
         }



         else if((screen.width == 1600) && (screen.height == 1200))
         {
            alert("Good grief, man! Your Monitor\'s screen resolution has been detected as 1600x1200. " +
                  "That\'s astronomical! Are you a graphic artist or a CAD designer?  This section will " +
                  "be much more readable if you change your screen resolution to 1024x768. Thank you " +
                  "for visting NetworkingProgramming.com!");
         }




} //close function

