
24.01.2002, 10:52
|
|
Регистрация: Dec 2001
Адрес: USA, Fort Myers
Сообщений: 38
|
JavaScript
<script language="Javascript"><!--
if (screen.width <= 1023) {
document.location = "small_window.htm";
}
if (screen.width > 1024) {
document.location = "actual_site.htm";
}
//--></script>
|