//document.ondragstart = new Function("return false")	//關閉拖曳
//document.onselectstart = new Function("return false")	//關閉選取
//document.oncontextmenu = new Function("return false")	//關閉右鍵
//防止被人frame
if (top.location != self.location)top.location=self.location;

function getError(s){
  s.src="./img/KF-nop.gif";
}

// ------  跳視窗抓取大圖  -----------
function getBigPic(sValue){
   var w=600;
   var h=480;
   sysWin = window.open('./showBigPic.jsp?showphoto='+ sValue,'showphoto','scrollbars=yes,resizable=yes,width='+w+',height='+h+',top='+ (screen.height - h)/2 +',left='+(screen.width - w)/2 +',',true);
   sysWin.focus();
   sysWin.opener = window;
   return false;
}