function newwindow(wname,url,features)
 { window.open(url,wname,features); }        

function makeAboutTip(item, itype, event){
		var d = document.getElementById("aboutTip_"+item);
		//var d = document.getElementById("aboutTip");
		if(itype==1){
			var html = '';
			var pos_x = document.body.scrollLeft+event.clientX+5;
			var pos_y = document.body.scrollTop+event.clientY+5;
//			html = '<table cellpadding=0 cellspacing=0 border=0 class="aboutTable">';
//			html += '<tr><td>'+text+'</td></tr>';
//			html += '</table>';
			
//			d.innerHTML = html;
			d.style.top = pos_y;
			d.style.left = pos_x;
		}
		d.style.visibility = itype==1 ? 'visible' : 'hidden';
	}
