<!--
	function openwin(pagename){	
		window.open(pagename,'jp_detail_photo','width=900,height=670,left=0,top=0,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no'); 
	}

	function NewWin(newURL,wth,hgh)
	{
		window.open(newURL,'','width='+wth+',height='+hgh+',left=0,top=0,scrollbars=yes');
	}
		
		function show_photo_detail(bShow)
	{
		var photo_detail = document.getElementById('photo_detail');	
		var achor_show_photo_detail = document.getElementById('achor_show_photo_detail');	
		
		
		if(bShow){
			photo_detail.style.visibility = "visible";
			achor_show_photo_detail.setAttribute("href", "javascript:show_photo_detail(false)");
			achor_show_photo_detail.innerHTML = "隐藏照片详细信息";
			setCookie("bPhotoDetail",true,365);
		}else{
			photo_detail.style.visibility = "hidden";
			achor_show_photo_detail.setAttribute("href", "javascript:show_photo_detail(true)");
			achor_show_photo_detail.innerHTML = "显示照片详细信息";
			setCookie("bPhotoDetail",false,365);
		}
	}
	
	
	function getCookie(c_name)
	{
		if (document.cookie.length>0)
		{ 
			c_start=document.cookie.indexOf(c_name + "=")
			if (c_start!=-1)
			{ 
				c_start=c_start + c_name.length+1 
				c_end=document.cookie.indexOf(";",c_start)
				if (c_end==-1) c_end=document.cookie.length
					return unescape(document.cookie.substring(c_start,c_end))
				} 
		}
		return null
	}
	
	function setCookie(c_name,value,expiredays)
	{
		var exdate=new Date()
		exdate.setTime(exdate.getTime()+expiredays*60*60*24*1000)
		
		document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : "; expires="+exdate.toGMTString());
		
	}
-->