//functions used for revioe of objects

function ShowRateWindow()
{
	window.location = "review_submit.php?object=<?php echo $object;?>";
}
function Show_Box()
{
	document.getElementById("outer_panel").style.display = "block";
}

function Hide_Box()
{
	document.getElementById("outer_panel").style.display = "none";
}
