﻿<!-- // Javascript Email Address Encoder
								var first = 'ma';
								var second = 'il';
								var third = 'to:';
								var addressdk = 'dk';
								var addressuk = 'uk';
								var addresspt = 'pt';
								var addressgeneral = 'postmaster';
								var domain = 'dannygokeyeurope';
								var ext = 'com'; 
								document.write('<p>If you want to contact us<br /><br />');	
								document.write('<a href="');
								document.write(first+second+third);
								document.write(addressdk);
								document.write('&#64;');
								document.write(domain);
								document.write('.');
								document.write(ext);  
								document.write('">'); 
								document.write('Contact Denmark</a></p>');	
								document.write('<p><a href="');
								document.write(first+second+third);
								document.write(addressuk);
								document.write('&#64;');
								document.write(domain);
								document.write('.');
								document.write(ext);  
								document.write('">'); 
								document.write('Contact United Kingdom</a></p>');	
								document.write('<p><a href="');
								document.write(first+second+third);
								document.write(addresspt);
								document.write('&#64;');
								document.write(domain);
								document.write('.');
								document.write(ext);  
								document.write('">'); 
								document.write('Contact Portugal</a></p>');
								document.write('<p><a href="');
								document.write(first+second+third);
								document.write(addressgeneral);
								document.write('&#64;');
								document.write(domain);
								document.write('.');
								document.write(ext);  
								document.write('">'); 
								document.write('Contact in General</a></p>');
// -->
