// JavaScript Document
//Created by GRR on 8th April 2006
//This code is used to get the users screen resolution so the correct style sheet can be selected.
//If the users screen resolution is equal to 1024x768 or higher then the stlye sheet for a 1024x768 will be selected
//If the users screen resolution is less than 1024x768 then the stlye sheet for a 800x600 will be selected

//Also the screen size will inserted in to the database for marketing perposses in the future

  <!--          
 	//document.write("SCREEN WIDTH = " + screen.width + " SCREEN HEIGHT = " + screen.height) 
                
	var varScreenResolution = screen.width + "x" + screen.height 
	//document.write("<br>varScreenResolution = " + varScreenResolution)  
	
	if ((screen.width>=1024) && (screen.height>=768)){ 
		//use style sheet StyleSheet1024x768 for 1024x768 size screen 
		//window.location="highres.html"; 
		document.write("<link rel='stylesheet' href='StyleSheet/StyleSheet1024x768.css'>");
		} 
		else{ 
		//use style sheet for 800x600 screen 
		document.write("<link rel='stylesheet' href='StyleSheet/StyleSheet800x600.css'>");
		} 
		//-->
