

function getObject(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
  }
}

function isFromSearchEngine(flag)
{
if (flag) return;
//	var x = new getObject('google');
//	x.style.visibility = (flag) ? 'hidden' : 'visible'
  //      x.style.height = (flag)? 0:google_ad_height;
  //      x.style.width = (flag)? 0:google_ad_width;   
document.writeln('<!-- Google -->');
document.writeln('<script type="text/javascript"><!--');
document.writeln('google_ad_client = "pub-7394576903589552";');
document.writeln('google_ad_width = 728;');
document.writeln('google_ad_height = 90;');
document.writeln('google_ad_format = "728x90_as";');
document.writeln('google_ad_channel ="4262327031";');
document.writeln('google_ad_type = "text_image";');
document.writeln('google_color_border = "336699";');
document.writeln('google_color_bg = "FFFFFF";');
document.writeln('google_color_link = "0000FF";');
document.writeln('google_color_url = "008000";');
document.writeln('google_color_text = "000000";');
document.writeln('//--></script>');
document.writeln("<script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'></script>");
}

function initializePage()
{
	var DHTML = (document.getElementById || document.all || document.layers);
	if (!DHTML) return;
	var flag = 1;
/*
	if (document.referrer.indexOf( 'google' ) > 1 
		 || document.referrer.indexOf( 'yahoo' ) > 1
		 || document.referrer.indexOf( 'a9.' ) > 1
		 || document.referrer.indexOf( 'search.' ) > 1) {
		flag = 0;
	}
*/
    	isFromSearchEngine(flag);
}
