function bookmarksite(title, url){ 
	if (window.external) window.external.AddFavorite(url, title); 
	else if (window.sidebar) window.sidebar.addPanel(title, url, "") 
	else if(window.opera && window.print) { // Opera Hotlist
                var elem = document.createElement('a');
                elem.setAttribute('href',url);
                elem.setAttribute('title',title);
                elem.setAttribute('rel','sidebar');
                elem.click();
                return false;
        }
}

function makehomepage() {
   var agt=navigator.userAgent.toLowerCase();
   if(agt.substr(agt.indexOf('opera')+6,1) < 9) {
	alert('Bu sehifeni ana sehife etmek ucun CTRL+T ye basin.');
   } else {
	this.style.behavior='url(#default#homepage)'; 
	this.setHomePage('http://www.icmal.az/');	
   }
}

function qezetZoom(direction) {
   if (direction==1) {
	if (document.res1.width>300) document.res1.width=document.res1.width-100;
   } else if (direction==2) {
	if (document.res1.width<1300) document.res1.width=document.res1.width+100;
   } else {
	document.res1.width=800;
   }
   //alert('direction='+direction);
}


