function good(id)
{
alert("voted good");
frames['comframe'].location.href = "mysmg/com.php?id="+id+"&good=1";
}
function bad(id)
{
alert("voted bad");
frames['comframe'].location.href = "mysmg/com.php?id="+id+"&good=0";
}



function big(id)
{
a = document.getElementById("h"+id);
g = document.getElementById("m"+id);
a.style.display="block";
g.style.height="auto";
}

function small(id)
{
a = document.getElementById("h"+id);
g = document.getElementById("m"+id);
a.style.display="none";
g.style.height="150px";
}
