function show_ada()
{
	alert('hello');
}


function show_ad() {
	
	var adUrl;
	adUrl = '/posters/ads/ads.asp' + '';
	
      document.write('<ifr' + 'ame' +
                     ' name="ads_frame"' +
                     ' width=100 ' +
                     ' height=2400' +
                     ' frameborder=0 ' +
                     ' src=' + quoted(adUrl) +
                     ' marginwidth="0"' +
                     ' marginheight="0"' +
                     ' vspace="0"' +
                     ' hspace="0"' +
                     ' allowtransparency="true"' +
                     ' scrolling="no">');
      document.write('</ifr' + 'ame>');
    }
function quoted(str) {
  return (str != null) ? '"' + str + '"' : '""';
}    
show_ad();
//alert('test');

