// 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)  
		
		document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
		  document.write("<tr>");
		  	document.write("<td align='center'><img src='PageLayoutImages/Blue_w1h1px.gif' width='90%' height='1'></td>");
		  document.write("</tr>");
		  
		  document.write("<tr>");
		  	document.write("<td align='center' class='BodyTxt-71Percent-BK'>");
					
					document.write("Tel: 01773 713300 Fax: 01773 711010  Email: <a href='EmailForm.htm' style='text-decoration:underline'>Sales@Stedmark.com</a><br>"); 
					document.write("Unit 11, Derby Road Industrial Estate, Derby Road, Heanor, Derbyshire DE75 7QL<br>"); 
					
					var myDate=new Date()
					var year = myDate.getYear()
					document.write("<br>Stedmark Ltd: Copyright " + year + " © All Rights Reserved.<br>"); 
					document.write("<img src='PageLayoutImages/FlagUK.gif' alt='Made in Great Britain' title='Made in Great Britain' border='0' align='absmiddle'>&nbsp;Made in Great Britain. Designed by <a href='http://www.spicytuna.co.uk' style='text-decoration:underline'>SpicyTuna - Web Design & Consultancy</a> <br>"); 
			
			document.write("<td>");
		  document.write("</tr>");
		document.write("</table>");
		
		//-->

