function newWin(name, w, h, m){
	nwin = "/inc/newWin.asp?filename="+name+"&brdDir="+m;
	if (h<601 && w<801){
		window.open(nwin,"imgWin","resizable=no,status=no,scrollbars=no,top=10,left=10,width="+w+",height="+h+"");
	} else {
		window.open(nwin,"imgWin","resizable=no,status=no,scrollbars=yes,top=10,left=10,width="+w+",height=600");
	}
}
