function showpasswd() {

	if(document.getElementById('passwd-login-widget').value == '') {
		
		document.getElementById('passwd-login-widget').style.background = "url(/pics/passwd-bg.jpg)";
		
	}
}

function hidepasswd() {

		document.getElementById('passwd-login-widget').style.background = "#fff";
			
}

function hideinput(txt, id) {
	if(document.getElementById(id).value == txt) {
		
		document.getElementById(id).value = "";
		
	}
}

function showinput(txt, id) {

	if(document.getElementById(id).value == '') {
	
		document.getElementById(id).value = txt;

	}
}

function notif() {

	document.getElementById('send-to-friend').style.display = 'none';
	
	document.getElementById('send-message-send').style.display = 'none';
	
	document.getElementById('notification-form').style.display = 'block';

}

function answer() {

	document.getElementById('send-to-friend').style.display = 'none';
	
	document.getElementById('notification-form').style.display = 'none';
	
	document.getElementById('send-message-send').style.display = 'block';

}

function sendtofriend() {
	
	document.getElementById('send-message-send').style.display = 'none';
	
	document.getElementById('notification-form').style.display = 'none';
	
	document.getElementById('send-to-friend').style.display = 'block';

}