// JavaScript Document
function openwin1(url,w,h,scrollyes)
			{
				var top = (screen.height-h)/2;
				var left = (screen.width-w)/2;
				var customize = "toolbar=no,menubar=no,resizable=yes,scrollbars="+scrollyes+",width="+w+",height="+h+",top="+top+",left="+left;
				window.open(url,'_blank',customize);
			}
			
