<!--
var x,y;
if (self.innerHeight) // all except Explorer
{
	x = self.innerWidth;
	y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
{
	x = document.documentElement.clientWidth;
	y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
	x = document.body.clientWidth;
	y = y;
}

function reDo(){
window.location.href = window.location.href;
}
window.onresize = reDo;

if (y >= 960) {
document.write('<link href="scripts/neptune_huge.css" rel="stylesheet" type="text/css" title="stylesheet" />');
}
else if (y >= 800 && y <= 960) {
document.write('<link href="scripts/neptune_big.css" rel="stylesheet" type="text/css" title="stylesheet" />');
}
else if (y <= 800) {
document.write('<link href="scripts/neptune.css" rel="stylesheet" type="text/css" title="stylesheet" />');
}

-->