
function PBJS()
{
	
}

PBJS.moveContent = function( from, to )
{
	if ( from == null )
		document.getElementById( to ).innerHTML = '';
	else
		document.getElementById( to ).innerHTML = document.getElementById( from ).innerHTML;
}