var domain = "moversandshakers.uk.com"

function do_email (domain, name, enquiry) {
	document.write ("<a  href=\"mailto:")
	document.write (name + "@" + domain);
	if (enquiry != "") {
		document.write ("?subject="+enquiry)
	}
	document.write ("\">")
	document.write (name + "@" + domain);
	document.write ("</a>")
}

//have added this as only home.php has rotating image but to get it
//to work there must me a call to this function in the body tag
//so this is a blank for all other files
//when home.php loaded, main function will supersede this
function rotateImage(place) {
}
