function MM_openBrWindow(theURL,winName,features) { //v1.2.1
   if (!theURL.match(/http:\/\//)) {
      var docdom = document.domain;
     var loc = window.location.toString();
     loc = loc.replace('http://','');
     if (loc.match(docdom)) {
        loc = loc.substring(0,loc.indexOf('/'));
     } else {
        loc = docdom;
     }
      theURL = 'http://'+(theURL.match(/^\//)?loc:'')+ theURL;
   }
   if (!features) {
   features='location=yes,toolbar=yes,menubar=yes,directories=yes,status=yes,resizable=yes,scrollbars=yes';
   }
   window.open(theURL,winName,features);
}

function smalla(whichItem){
var txt = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="1" height="1" id="mplayer" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="FlashVars" value="playSong='+whichItem+'"><param name="movie" value="http://images.chron.com/common/mm/08/miniplayer/miniplayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="http://images.chron.com/common/mm/08/miniplayer/miniplayer.swf" FlashVars="playSong='+whichItem+'" quality="high" bgcolor="#000000" width="1" height="1" name="mplayer" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>'

   if (document.layers){
     document.layers['aLayer'].document.open();
     document.layers['aLayer'].document.write(txt);
     document.layers['aLayer'].document.close();
   }
  else if (document.getElementById){
      document.getElementById('aLayer').innerHTML = txt;
   }
  else if (document.all){
      document.all.aLayer.innerHTML = txt;
   }
}



function stopa()
{

var txt = '';

   if (document.layers)
   {
     document.layers['aLayer'].document.open();
     document.layers['aLayer'].document.write(txt);
     document.layers['aLayer'].document.close();
   }
  else if (document.getElementById)
   {
      document.getElementById('aLayer').innerHTML = txt;
   }
  else if (document.all)
    {
      document.all.aLayer.innerHTML = txt;
}


}
