// T324 Scripts 11/06/03

// Copyright Date Script
function copyrightdate(start_year)
{
var d=new Date();
yr=d.getFullYear();
if (yr!=start_year) {
return(start_year+"-"+yr);  }
if (yr==start_year) {
return(start_year);  }
}
			  
// NoSpamEmail Script
function nospam(domain,name,visible){
/* comment within a script */
document.write('<a href=\"mail'+'to:' + name + '@' + domain + '\">');
document.write(visible+ '</a>');
}
//Example: nospam("casamina-santabarbara.com","info","Click here to get more information") 

// NoSpamEmail Script 2
function nospam2(domain,name,tld){
/* comment within a script */
document.write('<a href=\"mail'+'to:' + name + '@' + domain + '.' + tld + '\">');
document.write(name + '@' + domain + '.' + tld + '</a>');
}
//Example: nospam2("casamina-santabarbara,"info","com") 

