function fill_spam_fields()
{
  if(document.getElementById("writeus") != null)
  {
    document.forms['writeus'].writeus_spam_control.value = "20";
    document.getElementById("writeus_spam").style.display = "none";
  }
  
  if(document.getElementById("dform") != null)
  {
    document.forms['dform'].dprotection.value = "5";
    document.getElementById("dspam").style.display = "none";
  }
  
}

function start()
{
  fill_spam_fields();
}


function addLoadEvent(func) 
{  
	var oldonload = window.onload;  
	if (typeof window.onload != 'function') 
	{  
		window.onload = func;
	} 
	else 
	{ 
		window.onload = function() {
			oldonload();
			func();
		}  
	}  
} 

addLoadEvent(start);
