function doClear(theText) {
  if (theText.value == theText.defaultValue) {
    theText.value = ""
  }
}

function init() {
  //createFlashMarkup('470','60','./home.swf','flashmenu');
  //createFlashMarkup('515','10','./box.swf','flashbar');
}

function createFlashMarkup(width,height,uri,replaceid) {
  var embed = document.createElement('embed');
  embed.setAttribute('width',width);
  embed.setAttribute('height',height);
  embed.setAttribute('src',uri);

  var div = document.getElementById(replaceid);
  document.getElementById('rboven').replaceChild(embed,div); 
}

function fotopop(foto, alttekst, breed, hoog) {
    venster=window.open
    ('','','width='+breed+',height='+hoog+',left=10,top=10,screenY=10,screenX=10');
  	with(venster.document) {
	  open();
	  write('<head><title>'+alttekst+'<\/title><\/head>\n');
	  write('<body marginwidth=0 marginheight=0 style="margin:0;" onBlur="window.close()" onClick="window.close()">\n');
	  write('<a href="#" style="cursor:hand;"><img src=".\/abc\/upload\/'+foto+'" width='+breed+' height='+hoog+' border="0"></a>\n');
	  write('<\/body><\/html>');
	  close();
   	}
}
