var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos,resizing,location,status,menubar,toolbar){
	LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=false,directories=no,status='+status+',menubar='+menubar+',toolbar='+toolbar+',resizable='+resizing;

	var url = "/photo.jsp?url="+mypage;

//	win=window.open(mypage,myname,settings);
	win=window.open(url,myname,settings);
//	alert(mypage);
//	alert(myname);
	win.focus();
}

function showMenuPage1() {
	document.getElementById('menuPage1').style.display='block';
	document.getElementById('menuPage2').style.display='none';
	
	var tabList = document.getElementById("tablist_menu");
	lst = tabList.getElementsByTagName("li");
	lst[0].setAttribute("id","current");
	lst[1].setAttribute("id","");
}

function showMenuPage2() {
	document.getElementById('menuPage2').style.display='block';
	document.getElementById('menuPage1').style.display='none';

	var tabList = document.getElementById("tablist_menu");
	lst = tabList.getElementsByTagName("li");
	lst[1].setAttribute("id","current");
	lst[0].setAttribute("id","");
}


