$(document).ready(function(){
	var profile = {
			
		nwin:
		{
			width:500,
			height : 800,
			createnew:0,
			center : 1
		}
		
	}
	$(".openwin").popupwindow(profile);
 /* Handles the button click */
	$('#divuserlist').click(function(){
		$('#userlist').width($('#divuserlist').width()+13);
		//$('#userlist').toggle("slow");
		$('#userlist').slideToggle("fast");
	});

});
