toggleGLogin = function() {
	if($('glogin').style.display == 'none') {
		$('glogin').show();
	}
	else {
		$('glogin').hide();
	}
}
