function init() {
	var x,y;
	if (self.innerHeight) // all except Explorer
	{
		x = self.innerWidth;
		y = self.innerHeight;
		
		
	}
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
	{
		x = document.documentElement.clientWidth;
		y = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		x = document.body.clientWidth;
		y = document.body.clientHeight;
	}
	if (x<=800)
	{
	 document.getElementById('gad2').className = 'hide';
	}
	else if (x<=1024)
	{
	 document.getElementById('gad2').style.marginLeft = '5px';
	}
	else if (x<=1280)
	{
	document.getElementById('gad2').style.left = '135px';
	}
	else if (x<=1400)
	{
	document.getElementById('gad2').style.left = '174px';
	}
	else if (x<=1600)
	{
	document.getElementById('gad2').style.left = '295px';
	}
}
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
