// Storing, Retrieval and Reading of Cookies //
// Version V1.0.0, 22/09/2007 WBM. //
// Copyright 2007. Property of Design Atom - wwww.designatom.com//

// Find all Cookies for this Website and the Users Computer
function fctFindCookies() {
	// Temporary User Message
	alert("We Have No Cookies Stored On Your Computer.");
}

// Check if the user cookie is set
function fctReadCookie() {
	var strUserid = "";
	
	// Read the cookie and extract the user id
	strCookie = unescape(document.cookie);
	if(strCookie) {
		intSeperator = strCookie.indexOf("=");
		strUserid = strCookie.substring(intSeperator + 1);
	}
	
	// Return the userid
	return strUserid;
}

// Write to the user cookie
function fctWriteCookie(strUserid){
	document.cookie =  "userid=" + strUserid;
}