
function loadFlash(str) {
	
	swfobject.embedSWF("index.swf", "content", "955", "500", "9.0.0", "swf/expressInstall.swf", {}, {}, {id: 'flash'});
}

function loadHomeFlash(str) {
	
	swfobject.embedSWF("home.swf", "content", "955", "500", "9.0.0", "swf/expressInstall.swf", {}, {}, {id: 'flash'});
}


function addCopyright(){
	var currentYear =  new Date();
	var thisYear = currentYear.getFullYear();
	document.write("&copy; " + thisYear + " by Calypso Systems. All rights reserved. <a href='http://www.calypsosystems.com/privacy-policy/' target='_blank'>Privacy Policy</a>.");
}

function changeHomeBlogList(value){
	
	var o_div;	//div to be open
	var c_div;	//div to be closed
	if(value == "homeRecent"){
		o_div = document.getElementById("homeRecent");
		c_div = document.getElementById("homePopular");
	}
	if(value == "homePopular"){
		o_div = document.getElementById("homePopular");
		c_div = document.getElementById("homeRecent");
	}
	
	o_div.style.display = "block";
	c_div.style.display = "none";
}
