			/**************************************			*	Author:									*			*	Eliezer Navarsky						*			*	eMail: navarsky@shtrudel.co.il			*			*	Shtrudel Advanced Communications		*			*	Web: http://www.shtrudel.co.il			*			*											*			**************************************/// debug message//alert("Read Site Value");function getSite() {	// debug message	//alert("Getting Cookie");	if(reqSite) {		open(reqSite,'ntsite');	}}function getCookie(name) {	if(document.cookie == '') {		return false;	} else {		return unescape(getCookieValue(name));	}}function getCookieValue(name) {	var firstChar, lastChar;	var theBigCookie = document.cookie;	firstChar = theBigCookie.indexOf(name);	if(firstChar != -1) {			firstChar += name.length + 1;		lastChar = theBigCookie.indexOf(';', firstChar);		if(lastChar == -1) {			lastChar = theBigCookie.length;		}		return theBigCookie.substring(firstChar, lastChar);	} else {		return false;	}}
