function nw(path,Name){

	popW = screen.width-100;
	popH = screen.height-100;
	
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no,top=0,left=0'
	Win = window.open(path, Name, winProp)
	
}

function newwin(page){
	photoWin=window.open(page,"gallery","width=600,height=500,top=0,left=0,scrollbars=1,menubar=0,resizable=1,status=1,toolbar=0,location=0,directories=0");
	photoWin.focus();
}
