/* ---------- POPUP PIC ---------- */
function popup(url) {
  window.open(url,'','resizable=0,height=470,width=700');
	return false;
}

var arrTemp = self.location.href.split("?"); 
var picUrl = (arrTemp.length > 0) ? arrTemp[1] : ""; 
var NS = (navigator.appName == "Netscape") ? true : false; 

function FitPic() { 
  iWidth = (NS) ? window.innerWidth : document.body.clientWidth; 
  iHeight = (NS) ? window.innerHeight : document.body.clientHeight; 
  iWidth = document.images[0].width - iWidth; 
  iHeight = document.images[0].height - iHeight; 
  window.resizeBy(iWidth, iHeight); 
  self.focus(); 
}; 
/* ---------- / POPUP PIC ---------- */

/* ---------- BOOKMARK ---------- */
function bookmark(url, description) {
  if (navigator.appName=='Microsoft Internet Explorer') {
    window.external.AddFavorite(url, description);
  }
}
/* ---------- / BOOKMARK ---------- */
