// T324 Scripts 11/06/03

// Copyright Date Script
function copyrightdate(start_year)
/* comment within a script */
{
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){
document.write('<a href=\"mail'+'to:' + name + '@' + domain + '.' + tld + '\">');
document.write(name + '@' + domain + '.' + tld + '</a>');
}
//Example: nospam2("casamina-santabarbara,"info","com") 

// Requires MacroMedia Flash Script
function getflash(message){
document.write('<p align="left"><a href="http://www.macromedia.com/go/getflashplayer/" target="_blank"><img src="/resources/Master_Images/get_flash_player.gif" alt="Get Macromedia Flash Player" hspace="5" border="0" align="right" ></a>' + message + '</p>');
}
//Example: getflash("Get Flash player for FREE!")

function pdfer(name,title,size){
document.write('<p><img src="/resources/Master_Images/pdf.gif" alt="PDF" width="32" height="32" border="0" style="float:left; margin-right:15px"><a href="' + name + '">' + title + '</a> (' + size + 'K)<br ><a href="http://www.adobe.com/products/acrobat/readstep2.html">Adobe Reader</a> is required to view this file.</p>');
}

//Example: 
//pdfer("/main/documents/aerialmap.pdf")