//this function to zoom the website
var i=0;
function zoom(id) {
	var str;

	if (id == "1")  {
		i++;
		document.body.style.zoom=1+i/10;
	}
	if (id == "2") {
		i--;
		document.body.style.zoom=1+i/10;
	}
	if (id == "3") {
	document.body.style.zoom=1;
	i=1;
	}
}
var intervalTime = 0;
//this function open javascript window
function openWindow(url, name, w, h,fullscreen,scrollval,resize) {
	if(scrollval =='no')
		scrollvall='no';
	else
		scrollval='yes';
	if(resize =='no')
		resize='no';
	else
		resize='yes';
	if (window.screen) {
        if(fullscreen!=1) {	
			w = (null == w) ? 490 : w;
			h = (null == h) ? 490 : h;
		}
		else {
			 w = window.screen.availWidth;
    	     h = window.screen.availHeight
        }
		var windowWidth = w;
		var windowHeight = h;
		var x = (screen.availWidth - windowWidth) / 2;
		var y = (screen.availHeight - windowHeight) / 2;
		popup = window.open(url,name,"dependent,resizable="+resize+",scrollbars="+scrollval+",width=" + windowWidth + ",height=" + windowHeight + ",left=" + x + ",top=" + y);
		//popup.window.title='xyz';
        if (popup.focus !=null) { popup.focus(); }
	}
}

function add2favorite()        
{                
	if(window.external)               
	{                        
		window.external.AddFavorite(location.href,'GITM -- AtPrime')              
	} 
	else              
	{                        
		alert("Your browser does not support this feature.  If you are using Netscape Navigator --\n" +"Click \"Bookmarks\" and then \"Add Bookmark\"  or type \"Ctrl+D\" to add this site to your favorites."); 
	}        
}
