/**************************************************************/
/*                       SCRIPT SETTINGS                      */
/* java script method to set current window url 	      */
/**************************************************************/


function setCurrentURL() {
    writeCookie("curr_page", window.location.href, '/','');
}


function writeCookie(name,value,path,expires,domain,secure){ 
    
	var CookieVal="";
	if (name){
		CookieVal=CookieVal+escape(name)+"=";
	}
	if (value){
		CookieVal=CookieVal+escape(value);
	}
    if (expires){
		CookieVal=CookieVal+"; expires="+expires.toGMTString();
	}
	if (domain){
		CookieVal=CookieVal+"; domain="+domain;
	}
	if (path){
		CookieVal=CookieVal+"; path="+path;
	}
	if (secure){
		CookieVal=CookieVal+"; secure="+secure;
	}
	self.document.cookie=CookieVal;  // sets the cookie

}


