// JavaScript Document
	function fromFlashNav(strWhichURL)
	{	
		strMasterPath = "http://arwoodwaste.com/";
		if(strWhichURL == "home")
			window.location = strMasterPath + "index.html";
		if(strWhichURL == "about")
			window.location = strMasterPath + "about_us.html";
		if(strWhichURL == "commercial")
			window.location = strMasterPath + "services/index.html";
		if(strWhichURL == "demolition")
			window.location = strMasterPath + "services/demolition.html";
		if(strWhichURL == "residential")
			window.location = strMasterPath + "services/index.html";
		if(strWhichURL == "rolloff")
			window.location = strMasterPath + "services/roll_off_containers.html";
		if(strWhichURL == "residential")
			window.location = strMasterPath + "services/index.html";
		if(strWhichURL == "contact")
			window.location = strMasterPath + "contact_us.htm";
		if(strWhichURL == "clients")
			window.location = strMasterPath + "waste_management_jobs.htm";
		if(strWhichURL == "for")
			window.location = strMasterPath + "for_sale.html";
		if(strWhichURL == "work")
			window.location = strMasterPath + "free_estimate.html";
		if(strWhichURL == "free")
			window.location = strMasterPath + "free_estimate.html";




	}
<!-- Original:  Ronnie T. Moore -->
<!-- Web Site:  The JavaScript Source -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var expDays = 30;
var exp = new Date(); 
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));

function getCookieVal (offset) {  
var endstr = document.cookie.indexOf (";", offset);  
if (endstr == -1)    
endstr = document.cookie.length;  
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {  
var arg = name + "=";  
var alen = arg.length;  
var clen = document.cookie.length;  
var i = 0;  
while (i < clen) {    
var j = i + alen;    
if (document.cookie.substring(i, j) == arg)      
return getCookieVal (j);    
i = document.cookie.indexOf(" ", i) + 1;    
if (i == 0) break;   
}  
return null;
}
function SetCookie (name, value) {  
var argv = SetCookie.arguments;  
var argc = SetCookie.arguments.length;  
var expires = (argc > 2) ? argv[2] : null;  
var path = (argc > 3) ? argv[3] : null;  
var domain = (argc > 4) ? argv[4] : null;  
var secure = (argc > 5) ? argv[5] : false;  
document.cookie = name + "=" + escape (value) + 
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 
((path == null) ? "" : ("; path=" + path)) +  
((domain == null) ? "" : ("; domain=" + domain)) +    
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {  
var exp = new Date();  
exp.setTime (exp.getTime() - 1);  
var cval = GetCookie (name);  
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}

function setSkipAlways(bValue)
{
	SetCookie ("skip_always", bValue);
}

function checkCookie()
{
	var skipIntro = GetCookie('skip_always');
	
	if (skipIntro == "" || skipIntro == null)
	{
		window.location = 'flash_intro.html';
	}

//	if (skipIntro != null)
//		window.location.href = "index1.html";
}