showOrHide=function(pdiv)
{
	if ($('#container').css('display') == "none")
	$('#container').show();
	else
	$('#container').hide();
};
