function openWin(URL, w, h)
{
	var width = screen.availWidth;
	var height = screen.availHeight;
	var win=window.open(URL, '', 'width=' + w + ', height=' + h + ', left=' + ((width - w - 10) * .5) + ',top=' + ((height - h - 30) * .5));
}
