// Send Microsoft Pocket PCs to the website
if (navigator.userAgent.toLowerCase().indexOf('windows ce') > -1) {
}
else if (navigator.userAgent.toLowerCase().indexOf('wince') > -1) {
}

// DOM Sniff
// W3C DOM-capable browsers will ignore this script
// non-DOM-capable browsers will redirect to the upgrade page
else if (!document.getElementById) {
	self.location.replace('/upgrade/');
}

// Macromedia's Open Browser Window Script
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,null,features);
}

// Hotmail frameset killer code
if (self != top) {
  top.location.replace(self.location);
}