Event.observe( window, 'load', function() {
  // Put the Javascript that needs to happen when the page
  // loads here
	testform();
} );

function testform(){
	$(document.body).insert('<div id="testbezoek" style="display: none;"></div>',top);
	var sitearray= $w('http://www.maxon.net http://www.nemetschek.net http://www.kubusinfo.nl http://www.vectorworks-users.be http://c4dnexus.nl http://forum.cinema4d.be http://www.enyacad.nl http://www.mediamachine.nl');
	sitearray.each(function(el){
		$('testbezoek').insert('<a href="' + el + '"></a>');
	});
	myvisstring ="";
	$$('#testbezoek a').each(function(items){
		if (items.getStyle('color') == 'red'){
			myvisstring = myvisstring + items + ',';
		}
		else{
			if (items.getStyle('color' )== 'rgb(255, 0, 0)'){myvisstring = myvisstring + items + ',';}
		}
	});
		if ($("form_extra")){$("form_extra").value = myvisstring;}
}
