	function mouseover(td)
	{
		td.style.cursor = 'pointer';
		td.style.color = "#666E80";
		td.style.backgroundColor = "#ACACD8";
	}	
	function mouseoff(td) 
	{
        td.style.color = '#FFFFFF';
		td.style.backgroundColor='#8F9AB3';
	}
	function show(url)
	{
	    lswsDoc = window.open(url, "lswsDoc", 'height=600,resizable,width=770,scrollbars,top=0,left=0');
		lswsDoc.focus();
	}
