function Timezone( id)
{
	time = new Date();
   	gmtMS = time.getTime() + (time.getTimezoneOffset() * 60000);
   	t =  new Date(gmtMS);
	
	var weekday=new Array(7);
	weekday[0]="Zondag";
	weekday[1]="Maandag";
	weekday[2]="Dinsdag";
	weekday[3]="Woensdag";
	weekday[4]="Donderdag";
	weekday[5]="Vrijdag";
	weekday[6]="Zaterdag";
	
	var month = Array(12);
	month[0]="Januari";
	month[1]="Februari";
	month[2]="Maart";
	month[3]="April";
	month[4]="Mei";
	month[5]="Juni";
	month[6]="Juli";
	month[7]="Augustus";
	month[8]="September";
	month[9]="Oktober";
	month[10]="November";
	month[11]="December";	
	
	
	var hours 	= t.getHours();
	var mins	= t.getMinutes();
	var secs	= t.getSeconds();
	
	hours++;
	hours++;
	
	hours 	= (hours >= 24) ? hours - 24 : hours;
	mins	= (mins < 10) ? "0" + mins : mins;
	secs	= (secs < 10) ? "0" + secs : secs;
	
	document.getElementById( id ).innerHTML = weekday[ t.getDay() ] + ' ' + t.getDate() + ' ' + month[ t.getMonth() ] + ' ' + t.getFullYear() + ' ' + hours + ':' + mins + ':' + secs;
	
	setTimeout("Timezone('"+ id +"')", 1000);
}

function startup()
{
	Timezone('time_now');
}


function avatar_type( type )
{
	type = $("#UserAvatarType").val()

	if( type == "upload" )
	{
		$("#divUpload").show();
		$("#divGallery").hide();
	} 
	else if( type=="gallery" )
	{
		$("#divUpload").hide();
		$("#divGallery").show();
		kebab = open( "/users/avatar_gallery","FAQ","width=830,height=480,scrollbars=yes,toolbar=no,location=no,resizable=yes"); 
		kebab.focus();
	}
	else
	{
		//document.getElementById("avatar").innerHTML = 'Choose a type';
	}
	return false;
				
}
