


var widgets_string = "";
	var whole_cookie = unescape(document.cookie);
	function place(new_item){
	widgets_string = widgets_string + "xxx" + new_item;
	if(document.cookie && document.cookie != "" )
	{
		document.cookie = whole_cookie + "xxx" + new_item //escape(widgets_string);
		//window.location = "default.htm";
		window.location.reload();
	}
	else 
	{
		document.cookie = "widgets=xxx" + new_item   //escape(widgets_string);
		window.location.reload();
		//window.location = "default.htm";
	}
}