/*--by S Lunden 2.13.2008.  used to switch backgrounds if the browser window is too small.--*/

window.onload = size
function size()
{
if((screen.availHeight<640) || (screen.availWidth<1024))
{ 
document.body.style.backgroundImage = 'none';
//alert('screen too small');
}
}