window.addEvent('domready', function() { $$('a.class').addEvent('click', function(e) { new Event(e).stop(); InfoWindow = window.open( 'http://essentialradio.net/media-zip.php?act=add&user_id=' + user_no + '&username=' + user_name +'&filename=[MP3SUBFOLDER]/[HEADLINE].mp3&preview_filename=[HEADLINE].mp3&category=' + cat_desc + '&station=' + callletters + '&title=[SHORTDESCRIPTION];', 'InfoWindow', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no,' + ' width=500, height=500, left=100, top=100' ); if (this.get('text') == 'Add to Downloads') this.set('text', 'Remove from Downloads'); else this.set('text', 'Add to Downloads'); return; }); new CartStatus({ // Use `this.mNumItems` and `this.mTotalFilesize`. onComplete: function() { // set the inner text of the element with id `cartStatus` $('cartStatus').set('text', 'You have ' + this.mNumItems + ' items awaiting download.'); return; } }); });