<!-- 
var col_list=[],move=0
col_list = ["white","#1C78E7","black","#CCCCCC"];

document.onmousemove = SearchPopup

function CallPopup(title_text, body_text, url_text, style_type, bg_col) {

	html_txt = "<TABLE WIDTH='300' BORDER='0' CELLPADDING='0' CELLSPACING='0'>"
	
	for (i=0;i<title_text.length;i++)	{
		col = col_list;
	
		if (url_text)
			body_text[i] += "<br><div width=100% align=right>"+url_text[i]+"</div>"
			
		var title = "<TR><TD><TABLE WIDTH='300' BORDER='0' CELLPADDING='2' CELLSPACING='0'><TR style='backgroundcolor:"+bg_col[i]+"; color:"+col[0]+";' class=txt_module_content><TD><B>"+title_text[i]+"</B></TD>";	
	
		if (i==0)
			title += "<TD align=right><A HREF='javascript:void(0)' ONCLICK='HidePopup()' class=txt_module_content><span style='color:#FFFFFF; text-decoration:none;'><B>Close</B></span></A></FONT></TD>";
		
		title += "</TR></TABLE></TD></TR>";
  	
		var txt = "<TABLE "+" WIDTH='300' BORDER='0' CELLPADDING='2' CELLSPACING='0' bgcolor='"+bg_col[i]+"'>"+title+"<TR><TD><TABLE WIDTH='100%' BORDER='0' CELLPADDING='2' CELLSPACING='0' bgcolor='"+col[3]+"'><TR style='backgroundcolor:"+col[3]+"; color:"+col[2]+";' class=txt_module_content><TD VALIGN='top'>"+body_text[i]+"</TD></TR></TABLE></TD></TR></TABLE>";
		
		html_txt += "<TR><TD>"+ txt +"</TD></TR><TR HEIGHT=1><TD></TD></TR>"
	}
	


	html_txt += "</TABLE>"

  PopupLayer.innerHTML=html_txt;
  move=1
}

function SearchPopup() {
	if(move) {
		PopupLayer.style.left = event.x+4+document.body.scrollLeft;
		PopupLayer.style.top = event.y+4+document.body.scrollTop;
		ShowPopup()
	}
}

function ShowPopup() {
 	PopupLayer.style.visibility = 'visible';
	move=0
}

function HidePopup()	{
	PopupLayer.style.visibility = 'hidden';
}


//-->



