<!--//
	function doSimple(url) {
    	var ajaxRequest = new AjaxRequest(url);
    	ajaxRequest.sendRequest();
  	}

	function showSubFolder(id)
	{
		if (document.getElementById('ul' + id).style.display == 'block')
		{
			document.getElementById('ul' + id).style.display = 'none';
			document.getElementById('img' + id).src = '/images/cfolder.gif';
		}
		else
		{
			document.getElementById('ul' + id).style.display = 'block';
			document.getElementById('img' + id).src = '/images/ofolder.gif';
		}
	}

	function popWindows(link, width, height) {
		window.open(link,'','width=' + width +',height='+height+',toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=yes');
	}
//-->
