function go( url, obj, id ){
	
	var width, height;
	var tt = 40;
	var proc = 78;
	var w = screen.width;
	var h = screen.height;
	if(w<1024 || h<768) {
		width=780;
		height=560;
	} else {
		width=980;
		height=750;
	}

	var l = ( w - width )/2 -15;
	var t = ( h - height )/2 - tt;
	url = "http://www.ebaz.by/"+url;
	
	window.open( url, "_blank", "toolbar=0,scrollbars=1,resizable=1,left="+l+",top="+t+",width="+width+",height="+height );
	return false;
}


function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}

