// This script inserts an e-mail address into the page.
// Set the next variables to hold the constituent parts of the address.
//
var name = "thewrightphoto"
var domain = "hotmail.co.uk"
//
// Build the HTML code to insert the website address.
//
document.write ("<a href=mailto:"+name+"@"+domain+">thewrightphoto at Hotmail UK</a>")
//
// End of Script
