function showHide(k){
    if (document.getElementById(k).style.display == 'none'){
        document.getElementById(k).style.display='block';
    }else{
        document.getElementById(k).style.display='none';
    }
}

function clics (ids)
{

	window.location='http://metabowerke.ru'+ids;
	return false;
};
function clics_reg (ids)
{
	var d = 'index.php?';
	var mh = '=yes';
	window.location=d+ids+mh;
	return false;
};

