function openWinScroll(URL,NAME,w,h)
{
	var winl=(screen.width-w)/2,
		wint=(screen.height-h)/2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,menubar=no,status=no,toolbar=yes';
	window.open(URL, NAME, winprops);
}
