
function gadSimple(width,height,format,type,alternate_ad_url)
{
 gadCustom("ffffff","0000FF","000000","008000","ffffff",width,height,format,type,alternate_ad_url);
}

function gadCustom(sborder,slink,sText,sURL,sBG,width,height,format,type,alternate_ad_url)
{
document.write(
'<script>'+
gPosition(width,height,format,type,alternate_ad_url)+
gColors(sborder,slink,sText,sURL,sBG)+
'</script><script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>');
};

function gPosition(width,height,format,type,alternate_ad_url)
{
  return(
  ' google_ad_width = '+width+
  ';google_ad_height = '+height+
  ';google_alternate_ad_url ="'+alternate_ad_url+'";'
  );
}

/* google ad settings */
function gColors(sborder,slink,sText,sURL,sBG)
{

return(
 ' google_ad_client = "pub-8649269390130627";'
+' google_color_border ="'+sborder+'";' 
+' google_color_link = "'+slink+'";' 
+' google_color_text = "'+sText+'";' 
+' google_color_url = "'+sURL+'";' 
+' google_color_bg = "'+sBG+'";' 
);

};



