<!-- Begin
function changePage() {
var fix= document.getElementById('inhoud');
var td1= document.getElementById('td1');
var gradient= document.getElementById('gradient');
var td3= document.getElementById('td3');
if ((screen.width == 800) && (screen.height == 600))
{
fix.style.height = "160px";
td1.style.width = "1px";
gradient.style.width = "1px";
gradient.style.visibility = "hidden";
td3.style.width = "1px";
}
else if ((screen.width == 1024) && (screen.height == 768))
{
fix.style.height = "328px";
}
else if ((screen.width == 1152) && (screen.height == 864))
{
fix.style.height = "424px";
}
else if ((screen.width == 1280) && (screen.height == 1024))
{
fix.style.height = "564px";
}
else
{
fix.style.height = "90%";
}
}
// End -->



