function openImageWin(url,w,h,c,s) {
	if(c) {
		xtop  = ((screen.availHeight-h)/2)-80;
		xleft = ((screen.availWidth-w)/2);
	} else {
		xtop  = 5;
		xleft = 5;
	}
	if(s!=undefined) {
		var sc = s;
	} else {
		var sc = 1;
	}
	parem='status=0,menubar=0,resizable=1,copyhistory=no,directories=no,scrollbars='+sc+',width='+w+',height='+h+',top='+xtop+',left='+xleft+'';
	var ywin = window.open(url, "c556zxy", parem);
	ywin.focus();
}
$(document).ready(function(){
	$('#list').clickMenu().show();
	$(".drop:last").css({"border-right":"0px"})
});



