

function loungeCookie(action){
	if (action == "put"){
		document.cookie = 'smith_lounge' + "=" + escape('true');
	}else if (action == "pull"){
		if (loungeCookie('get')) {
		  document.cookie = 'smith_lounge' + "=" + escape('false');
		}
	}else if (action == "get"){
		var cname = 'smith_lounge' + "=";               
		var dc = document.cookie;
		if (dc.length > 0) {              
		  begin = dc.indexOf(cname);       
		  if (begin != -1) {           
		    begin += cname.length;       
		    end = dc.indexOf(";", begin);
		    if (end == -1) end = dc.length;
		      return unescape(dc.substring(begin, end));
		  } 
		}
		return null;
	}
}

function checkLounge(){
	if(loungeCookie('get') == "true"){
		window.close();
	}else{
		location.href="http://www.smithsport.com/index.html";
	}
}



