
//First if statement is used to determine NS4 and send the appropriate stylesheet 
 if (screen.width > 1000 ) {
      document.write('<style type="text/css">')
      document.write('<!--')
      document.write('@import url(styles/main.css);')
	  document.write("help me")
      document.write('-->')
      document.write('</style>')
    }else {
		if (screen.width < 1000 ) {
      	document.write('<style type="text/css">')
      	document.write('<!--')
      	document.write('@import url(styles/mainSmall.css);')
      	document.write('-->')
      	document.write('</style>')
		}
    }
//-->

