function show_statics( m,s )
{	
	var div_id =  m.id;
	//alert( div_id);
	var img="<img src=\"topmirror/statics/"+ s +".png\" height=\"180\" width=\"650\" alt=\"static\" />";
	div_id += ".statics";
	document.getElementById(div_id).innerHTML=img;
	document.getElementById(div_id).height = 400;

}

function show_sourcelist( m )
{	
	var div_id =  m.id;
	//alert( div_id);
	//var html="<div class=\"source_list_down\">For 10.04 Lucid:<a href=\"topmirror/mirror/" + div_id +"/http/lucid/source.list\" target=\"_blank\">http</a>&nbsp;&nbsp;</div>";
	
	div_id += ".sourcelist";
	document.getElementById(div_id).style.display="block";//"visible" or "hidden";
	//document.getElementById(div_id).height = 100;

}

function show_related_domain( m )
{	
	var div_id =  m.id;
	//alert( div_id);
	//var html="<div class=\"source_list_down\">For 10.04 Lucid:<a href=\"topmirror/mirror/" + div_id +"/http/lucid/source.list\" target=\"_blank\">http</a>&nbsp;&nbsp;</div>";
	
	div_id += ".domain";
	document.getElementById(div_id).style.display="block";//"visible" or "hidden";
	//document.getElementById(div_id).height = 100;

}


