function open_photo(path,w,h){
	h=h+23;
	newWindow = window.open("photo/path_"+path+"/","subWind", "statusbar, HEIGHT="+h+", WIDTH="+w+", resizable");
	newWindow.focus();
}
function openWin(path,w,h,id){
	switch(path){	
		case 'photo/':	
			newWindow1 = window.open("photo/path_"+id+"/","subWind1", "statusbar, HEIGHT="+h+", WIDTH="+w+", resizable");
			newWindow1.focus();
			break;
	}
}
