function show(element,dis)
{
	if($(element).hasClass(dis))
	{
		$(element).removeClass(dis);
	}
	else
	{
		$(element).addClass(dis);
	}
}
function plop(ent,cls,tx)
{
	if(cls!='')
	{
		$(ent).removeClass();
		$(ent).addClass(cls);
	}
	if(tx!='')
	{
		$(ent).html(tx);
	}
}
function confirmThis(msg,destination)
{
	if(confirm(msg)){location.href=destination;}
}
