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=http://www.rkwoods.com;";
		var flashstring = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://www.rkwoods.com/images/slides/slide.swf" title="Welcome to rkwoods construction"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#F7F7F4><EMBED src="http://www.rkwoods.com/images/slides/slide.swf" quality=high bgcolor=#F7F7F4  WIDTH="110" HEIGHT="84" NAME="header" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" title="Welcome to rkwoods construction"></EMBED></OBJECT>';
		return flashstring;
	}
	else
	{
		var noflashstring = '<img src="http://www.rkwoods.com/images/slides/s2.jpg" border="0" alt="Welcome to rkwoods construction" height="84" width="110">';
		return noflashstring;
	}
}