// EMAIL PAGE LINK ************************************

function mailpage(){
  mail_str = "mailto:?subject=Check out the Senior Resource Group " + document.title + " page";
  mail_str += "&body=I thought you might be interested in the Senior Resource Group " + document.title + " page"; 
  mail_str += ". You can view it at, " + location.href;
  location.href = mail_str;
}

// GET COPYRIGHT YEAR *********************************

function currentdate() {
	var d=new Date();
	var year=d.getFullYear();
	document.write(year);
}

// flash embed

function create(FO) {
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="'
					+ FO.width + '" height="' + FO.height + '" wmode="transparent">'+'<PARAM NAME=movie VALUE="' + FO.movie + '">'+
					'<PARAM NAME="quality" value="high"><param name="wmode" value="transparent">'+'<EMBED src="' + FO.movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'
					+ FO.width +'" height="' + FO.height + '" swliveconnect="true" wmode="transparent">'+'</embed></object>');
};

function createfs(FO) {
	document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="'
					+ FO.width + '" height="' + FO.height + '" allowFullScreen="true">'+'<PARAM NAME=movie VALUE="' + FO.movie + '">'+
					'<PARAM NAME="quality" value="high">'+'<EMBED src="' + FO.movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'
					+ FO.width +'" height="' + FO.height + '" swliveconnect="true" allowFullScreen="true">'+'<param name="allowFullScreen" value="true"></embed></object>');
};





