function openWind(url, w, h) {
	var screenW = screen.width;
	var screenH = screen.height;
	var screenL = (screenW - w)/2;
	var screenT = (screenH - h)/2;
	window.open([url],'wind01','top='+[screenT]+',left='+[screenL]+',titlebar=no,toolbar=no,width='+[w]+',height='+[h]+',directories=no,status=no,scrollbars=no,menubar=no');
}