﻿<!--
//Use for Mobile surfing
// Palm gives width > 1 million
// Win Mobile width = 240 (portrait) or 320 (landscape)
// document.write('width=')
// document.write(screen.width)
// document.write(', height=')
// document.write(screen.height)
if ((screen.width >= 1000000)||(screen.width < 640))
{parent.location.href='m.default.aspx'}
else
{parent.location.href='defaultmain.aspx'}
//-->
