function showDownloads(){

	 new ljex.Ajax({
		url: '../index.php5?page=downloads',
		scope: this,
		callback: function(response){
			var htmlText = response.responseText;
			
            var pwin=new ljex.Window({
                    id: 'popupWindow',
                    title: 'Downloads',
                    html: htmlText,
                    width: 550,
                  //  height: 100,
                    center: true,
                    focusOpacity: true,
                    contentBgColor: '#000',
                    parentId: 'page'
                });

            pwin.open();

		}
	}).request();
}

