function omo(wat) {
 wat.oldClass = wat.className;
 if (wat.className.substring(0,3)!="big") {
  wat.className = "tabo";
 } else {
  wat.className = "bigtabo";
 }
}

function omt(wat) {
 wat.className = wat.oldClass;
}

function picmo(idnaam) {
 wat = document.getElementById(idnaam);
 wat.oldClass = wat.className;
 wat.className = "stillo";
}

function postermt(idnaam) {
 wat = document.getElementById(idnaam);
 wat.className = wat.oldClass;
}

function postermo(idnaam) {
 wat = document.getElementById(idnaam);
 wat.oldClass = wat.className;
 wat.className = "postero";
}

function picmt(idnaam) {
 wat = document.getElementById(idnaam);
 wat.className = wat.oldClass;
}

function showpic(pic) {
 // var w = window.open(pic, "pic", "status=1,toolbar=0,scrollbars=0");
 var w = window.open("dummy.html", "pic", "width=300, height=100, status=0,toolbar=0,scrollbars=0, left=200,top=100");
 w.document.write("<html><head><title>Fu Works</title><style type='text/css'>body {background-color: #000; color: #FFF; overflow: hidden; margin: 0;border:0;padding:0;}</style></head><body><img id='loadImg' name='loadImg' src=\"images/loading.gif\"  width='75' height='15' border='0' /><img src=\""+pic+"\" onload=\"document.getElementById('loadImg').style.display = 'none';window.resizeTo(this.width,this.height); wx=(screen.width-this.width)/2; wy=(screen.height-this.height)/2; window.moveTo(wx,wy)\" onerror=\"document.write('An error occurred loading the image '+this.src)\" /></body></html>");
 w.document.close();
}