function getCookieValue(cookieName)
{
	var cookieValue = document.cookie;
	var cookieStartsAt = cookieValue.indexOf(" " + cookieName + "=");
	
	if (cookieStartsAt == -1)
	{
		cookieStartsAt = cookieValue.indexOf(cookieName + "=");
	}
	
	if (cookieStartsAt == -1)
	{
		cookieValue = null;
	}
	else
	{
		cookieStartsAt = cookieValue.indexOf("=", cookieStartsAt) + 1;
		var cookieEndsAt = cookieValue.indexOf(";", cookieStartsAt);
		if (cookieEndsAt == -1)
		{
			cookieEndsAt = cookieValue.length;
		}
		cookieValue = unescape(cookieValue.substring(cookieStartsAt, cookieEndsAt));
	}
	
	return cookieValue;
}

function SM_Flash()
{
	var values;
	values = getCookieValue("SMFlash");
	
	if (values == "" || values == null){
		var expireDate = new Date();
		expireDate.setMinutes(expireDate.getMinutes() + 20);
		document.cookie = "SMFlash=Off;expires="+expireDate.toGMTString()+";path=/;domain=santa-monica.org;";
		var flashstring = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="758" HEIGHT="130" id="header" ALIGN="" ><PARAM NAME=movie VALUE="/home/header.swf" title="Welcome to the City of Santa Monica"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#DCEFFF><EMBED src="/home/header.swf" quality=high bgcolor=#DCEFFF  WIDTH="758" HEIGHT="130" NAME="header" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" title="Welcome to the City of Santa Monica"></EMBED></OBJECT>';
		return flashstring;
	}
	else
	{
		var noflashstring = '<img src="../gfx/home/static_flash.jpg" border="0" alt="Welcome to the City of Santa Monica" height="130" width="758">';
		return noflashstring;
	}
}