/* File: dutchrep.js * * JavaScript code for the Dutch Republic website. * * Date: december 2005 */ /* Function: InsertDutchRepAddress * * Write's a complete address-tag (<a>) to the page with a meijers.nl e-mail address. * This function is used to hide the actual email address from spiders that search * the web for email addresses to spam later. Takes the part that goes for the  * at-sign as a parameter. */function InsertDutchRepAddress(aUser) {	emailAddress = aUser + "@thed" + "utchrepublic.c";	emailAddress = emailAddress + "om";	document.write('<a href="mailto:' + emailAddress + '">' + emailAddress + '</a>');}/* Function: InsertInfoAddress * */function InsertInfoAddress() {	InsertDutchRepAddress('info');}/* Function: LinkInNewWindow * * Use this function to open a link in a new window. */function LinkInNewWindow(aLink) {	window.open(aLink); }/* Function: InsertExternalLink * */function InsertExternalLink(aTitle, aLink) {	// anATag = '<a href="javascript:LinkInNewWindow('http://www.wbnglobal.com/');">Worldwide Broker Network (WBN)</a>	// <a href="javascript:LinkInNewWindow('http://www.wbnglobal.com/');">Worldwide Broker Network (WBN)</a>	// window.open(aLink); }/* Function: ToPostcodeDownload * */function ToPostcodeDownload(theForm) {	itsChecked = theForm.AgreeYesNo.checked;	if (itsChecked == false) {		alert("U moet eerst akkoord gaan met de licentie-overeenkomst voordat u Postcode Widget kunt downloaden. (Klik op de link om de licentie-overeenkomst te bekijken.)");	}	return itsChecked;}