<!--

  var IE = document.all?true:false
  var height;

  if (!IE) {

  height = window.innerHeight;

  }

  if (!IE) {

   window.captureEvents(Event.RESIZE);
   window.onresize = checkheight;

  }

function tablestart(){


if (window.innerHeight != null) {

   height = window.innerHeight;
}

if ((height == null) && (document.body.clientHeight != null)) {

   height = document.body.clientHeight;
}

if (height != null) {

document.write('<table width=\"100%\" border=\"0\" height=\"' + height + '\" cellspacing=\"0\"><tr><td>');
}
}

function tableend() {

document.write('</td></tr></table>');

}

function imageover(image1,image2) {
    if (document.images) {
      
	
   document[image1].src = eval(image1 + 'over.src');

	if (image2) {

	document[image2].src = eval(image2 + 'over.src');
	}
    }  
}

function imagerestore(image1,image2) {
    
    if (document.images) {
     
      document[image1].src = eval(image1 + '.src');

      if (image2) {

      document[image2].src = eval(image2 + '.src');
      
      }
  }
}
//-->
