function funClock() {

	if (!document.layers && !document.all) return;
	var runTime = new Date();
	var year = runTime.getFullYear();
	var day  = runTime.getDate();
	var month = runTime.getMonth() + 1;
	var hours = runTime.getHours();
	var minutes = runTime.getMinutes();
	var seconds = runTime.getSeconds();

	if (month <= 9) month = "0" + month;
	if (day <= 9) day = "0" + day;
	if (minutes <= 9) minutes = "0" + minutes;
	if (seconds <= 9) seconds = "0" + seconds;

	movingtime = ""+ day +"-"+ month +"-"+ year +" "+ hours + ":" + minutes + ":" + seconds + "";

	if (document.layers) {
		document.layers.clock.document.write(movingtime);
		document.layers.clock.document.close();
	}
	else if (document.all) {
		clock.innerHTML = movingtime;
	}
	setTimeout("funClock()", 1000)
}
window.onload = funClock;

function LoadShoutBox(who) {

	return;

	if(who == 'member') {

			return '<iframe src="/new_design/shout.htm" style="width:150px;height:312px"></iframe>';

	}

	else return '<iframe src="/new_design/index.php?p=shoutbox" style="width:100%;height:312px"></iframe><br /><br />Visitantes não podem escrever.';

}