You could use something like this...
Code:
<script language=”JavaScript” type=”text/javascript”><!– // –><![CDATA[
if ((screen.width>=1024) && (screen.height>=768)) {
window.location=”higher1024.html”;
}
else {
window.location=”below1024.html”;
}
//–>
</SCRIPT>
But why do you really need it? There's a lot of wasted space on the page, just make it something like 800px wide...
- Steve
|