<!-- Hide script from old browsers
function resizeHeight(height)
{
  if (window.screen)
    return ((height*screen.height)/768);
}


function resizeWidth(width)
{
  if (window.screen)
    return ((width*screen.Width)/1024);
}


function scaleHeight(oldwidth, newwidth, oldheight)
{
  return (newwidth/oldwidth)*oldheight;
}
// End script hiding from old browsers -->
