
var ol_fullhtml = 1;
var ol_followmouse = 1;

function getIt(ico, htm){
var popup_html = '<table border="0" cellspacing="0" cellpadding="0" class="popup">';
	popup_html += '<tr>';
	popup_html += '<td width="4"><img src="images/pix.gif" alt="" width="4" height="1"></td>';
	popup_html += '<td width="29" valign="top"><img src="images/'+ico+'" alt="" width="29" height="28"></td>';
	popup_html += '<td width="5"><img src="images/pix.gif" alt="" width="4" height="1"></td>';
	popup_html += '<td valign="center" align="left" class="txt">'+htm+'</td>';
	popup_html += '<td width="5"><img src="images/pix.gif" alt="" width="4" height="1"></td>';
	popup_html += '<tr>';
	popup_html += '</table>';
	return popup_html;
}
function popup(i, h){
	var pop = getIt(i, h);
	return overlib(pop);
}
function findObj(id){
	var ie = (document.all);
	var ns6 = (document.getElementById&&!document.all);
	var nn4 = (document.layers);
	if (ie) var objet = document.all[id];
	else if (ns6) var objet = document.getElementById(id);
	else if (nn4) var objet = document.layers(id);
	return objet;
}
