function toggleDiv (element) {
  var el;
  el = document.getElementById(element);
  if (el.style.display != 'block') {el.style.display = 'block';}
  else {el.style.display = 'none';} }

i = 0;
function changeSize() {	
  while (i < document.images.length) {
    var width = document.images[i].width+35;
    var height = document.images[i].height+95;
    if (width < 450) {width = 450;}
    if (document.documentElement && typeof document.documentElement.style.maxHeight!="undefined") {height = height + 20;}
	top.resizeTo(width,height);
	i = i+1;} }

function high(obj) {
  obj.style.borderColor='#000000';
  return true; }

function rpms(obj) {
  obj.style.borderColor='#dddddd';
  return true; }