
<!--
function google_ad_request_done(google_ads) {
/*
* This function is required and is used to display
* the ads that are returned from the JavaScript
* request. You should modify the document.write
* commands so that the HTML they write out fits
* with your desired ad layout.
*/
var s = '';
var i;

/*
* Verify that there are actually ads to display.
*/
if (google_ads.length == 0) {
return;
}

if (google_ads[0].type == "html") {

s += google_ads[0].snippet;

} else {

if (google_ads.length == 1) {
/*
* Partners should adjust text sizes
* so ads occupy the majority of ad space.
*/
 s += '<DIV style="padding:8px; border:1px #F1E9D9 solid; background-color:#FEFAF0; height:70px; text-align:left;"><a href=\"' +
google_info.feedback_url + '\" style="color:#000000; font-size:13px;font-family:arial;font-weight:bold">Ads by Google</a><br><a style="text-decoration:none" href="' +
google_ads[0].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[0].visible_url + '\';return true"> <span style="text-decoration:underline;font-size:22px;font-family:arial; color:#FF8000"> <b>' +
google_ads[0].line1 + '</b><br></span></a> <span style="color:#000000;font-size:13px;font-family:arial">' +
google_ads[0].line2 + '&nbsp;' +
google_ads[0].line3 + '<br></span> <span><a style="color:#0000FF;text-decoration:none;font-size:12px;font-family:arial" href="' +
google_ads[0].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[0].visible_url + '\';return true">' +
google_ads[0].visible_url + '</span></a><br></div>';

} else if (google_ads.length > 1) 
{

   s += '<table cellpadding="1" border="0" cellspacing="0"><TR><TD COLSPAN="6"><div style="color:#737070; font-size:12px;font-family:arial; font-weight:bold;text-align:left; padding-left:5px;"><a href=\"' + google_info.feedback_url + '\" style="font-family:arial; font-size:13px;color:#000000; text-decoration:none; font-weight:bold;">Ads by Google</a></div></TD></TR><tr>'

  /*
  * For text ads, append each ad to the string.
  */

for(i = 0; i < google_ads.length; ++i) {


s += '<td width="1"><img src="/gifs/zero.gif" height="1" width="1"></td><td width="280" valign="middle"><DIV style="padding:8px; border:1px #F1E9D9 solid; height:70px; text-align:left;"><a style="text-decoration:none" href="' +
google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[i].visible_url + '\';return true"> <span style="text-decoration:underline;font-size:14px;font-family:arial; color:#FF8000"> <b>' +
google_ads[i].line1 + '</b><br></span></a> <span style="color:#000000;font-size:11px;font-family:arial">' +
google_ads[i].line2 + '' +
google_ads[i].line3 + '<br></span> <span><a style="color:#0000FF;text-decoration:none;font-size:11px;font-family:arial" href="' +
google_ads[i].url + '" onmouseout="window.status=\'\'" onmouseover="window.status=\'go to ' +
google_ads[i].visible_url + '\';return true">' +
google_ads[i].visible_url + '</span></a></div></td>';
}
}
s += '</TR></TABLE>'
if (google_ads[0].bidtype == "CPC") { /* insert this snippet for each ad call */ 
google_adnum = google_adnum + google_ads.length;
}   
 }

    document.write(s);
    return;
  }

google_ad_client = 'pub-8525015516580200'; // substitute your client_id (pub-#)
google_ad_channel = '9688060848';
google_max_num_ads = '1';
google_ad_output = 'js';
google_ad_type = 'text';
google_feedback = 'on';
google_skip = google_adnum; /* insert this snippet for each ad call */
// -->

