hi all...this is a script i was looking for. i found it after hours of searching...it will check the screen resolution of the users screen and redirect to the appropriate page on your site....didnt end up using it in the end tho...redesigned the whole site using CSS...
www.kingstoncustoms.co.uk ...if anyond who knows more than me can see any problems on the site please let me know...thanks, Dan
<script language="JavaScript1.2">
<!--
/*
Screen Size Redirect script (By Robert @
http://members.tripod.com/technological_tinker/)
Submitted to Dynamicdrive.com to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit
http://dynamicdrive.com
*/
if (screen.width==800||screen.height==600) //if 800x600
window.location.replace("http://www.netscape.com")
else if (screen.width==640||screen.height==480) //if 640x480
window.location.replace("http://www.microsoft.com")
else if (screen.width==1024||screen.height==768) //if 1024x768
window.location.replace("http://www.dynamicdrive.com")
else //if all else
window.location.replace("http://freewarejava.com")
//-->
</script>