// JavaScript Document

//Current Copyright Date

function writeYear(){
	var today = new Date()
	document.write(today.getFullYear())
    }


// VCard Javascript -----------------------------------

function VCard(vcf){

    blnOK = window.confirm("This VCard is a way to easily save my information to your email address book. \n\n If you are currently using Outlook 2000, Groupwise 5.5, or Outlook Express 5, click OK, then select Download File from Current Location. \n\nThen simply follow your email program instructions to add the information to your address book.");
    if (blnOK) {
        window.location = vcf;
    }

}