// JavaScript Document
<!--
function goBack (){
		var hrefstr,pos,parastr;
		hrefstr = window.location.href;
		pos = hrefstr.indexOf("url=");
		parastr = hrefstr.substring(pos+4);
		
		if (pos>0){ 
			window.location = parastr;
		}
		 else { 
			window.location = "/showPhoto/main.asp";
		}
	}	
	
function search(){
	var key = document.getElementById("searchKey");
	if( key.value.replace(/^\s*|\s$/g, "") == ""){
		alert("Please enter the word to search.");
		key.focus();
	}	
	else
		location.href = "/showPhoto/searchResult.asp?key=" + key.value;	
	
}	

function showmenu(strID, count){ 
  
	var i; 
    for(i=1;i<=count;i++){ 
        var lay; 
        layName = 'lay' + i; 
		lay = document.getElementById(layName);
        if (lay.style.display=="block" && layName!=strID){ 
            lay.style.display = "none"; 
        } 
    } 
	var strID = document.getElementById(strID);
    if (strID.style.display=="none"){ 
        strID.style.display = "block"; 
    }else{ 
        strID.style.display = "none"; 
    } 
 
} 


//--> 
