// centralized JavaScript code

function unfocus()
{
void blur();
}


function thisyear()
{
var today = new Date();
var year = today.getFullYear();
document.write("Copyright " + year + " by Susan Dorey Designs. All rights reserved.");
}


function yearonly()
{
var today = new Date();
var year = today.getFullYear();
document.write(year);
}


function contact()
{
var adr = "sus" + "an@susa" + "ndoreydes" + "igns.com";
alert("Email: " + adr + "\n\nTelephone: 415-453-7339");
}

function contactemail()
{
var adr = "sus" + "an@susa" + "ndoreydes" + "igns.com";
alert("Email: " + adr);
}

function writeemail()
{
var adr = "sus" + "an@susa" + "ndoreydes" + "igns.com";
document.write(adr);
}

function writephone()
{
var pho = "41" + "5-4" + "53-73" + "39";
document.write(pho);
}


function topofpage()
{
self.scrollTo(0,0);
}

function refresh()
{
location.reload();
}
