// JavaScript Document

function gofind(){
  if (document.formsearch.keyword.value=="")
  {
     alert('請輸入關鍵字！');
	 document.formsearch.keyword.focus();
     return false;
  }
  else
  {
     window.top.location="html/05selected/01.php?keyword=" + encodeURI(document.formsearch.keyword.value);
     return true;
  }
}

function gosearch(){
  window.top.location="html/05selected/search.php";
}

function picrun(w,r) {
  for (u=1;u<=r;u++){
	obj1 = document.getElementById("picview" + u);
	lnk = document.getElementById("link" + u);
	if (u==w) {
	obj1.style.display = "block";
	lnk.className="link_a5";
	}
	else {
	obj1.style.display = "none";
	lnk.className="link_a1";
	}	
  }
}
