var varFlash = Math.floor(Math.random()*3)
var varPadding = Math.floor(Math.random()*600)
var varAnt = Math.floor(Math.random()*5)

var popUpWin = 0;
function goDetail(URLStr, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  
  var csLeft = (screen.width - width) / 2;
  var csTop = (screen.height - height) / 2;
  
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',top='+csTop+',left='+csLeft+'');
}