<!--
window.defaultStatus = ' ';

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function navigation() {
   if(navigation.arguments[0]!=null) {
     var queryString="";
     if(navigation.arguments[1]!=null) {queryString="?"+navigation.arguments[1]}
     location.href='/_'+navigation.arguments[0]+'/'+queryString;
   } else {
     location.href='/';
   }
}

var popUpWin=0;
function popUpImage(title,img) {
  var width="250", height="200";
  if(popUpImage.arguments[2]!=null) {
    if(width < popUpImage.arguments[2]) width = popUpImage.arguments[2];
  }
  if(popUpImage.arguments[3]!=null) {
    if(height < popUpImage.arguments[3]) height = popUpImage.arguments[3];
  }
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  if(popUpWin) {
    if(!popUpWin.closed) popUpWin.close();
  }
  //var
  popUpWin = window.open("","popUpWin", styleStr);
  var head = '<head><title>' + title + '</title></head>';
  var body = '<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onClick="self.close()">';
  body += '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="middle">';
  body += '<img src="' + img + '">';
  body += '</td></tr></table>';
  body += '</body>';
  popUpWin.document.write('<html>' + head + body + '</html>');
  popUpWin.focus();
}

//-->