/* 
 * HI-computers
 * 
 */

function hide_div_met_id(id){
	document.getElementById(id).style.display="none";
}

function show_div_met_id(id){
	document.getElementById(id).style.display="block";
}


function init()
{
		hide_div_met_id("loading");
		hide_div_met_id("fade");

}
