
function inputs_onfocus() {
	inps=document.getElementsByTagName('INPUT');
	for (i=0;i<inps.length;i++) {
		t=inps[i].getAttribute('type');
		if(t=='text' || t=='password') {
			inps[i].onfocus=function(){
				this.style.backgroundColor='rgb(255, 250, 234)';
			};
			inps[i].onblur=function(){
				this.style.backgroundColor='#fff';
			};			
		}
	}
	textars=document.getElementsByTagName('TEXTAREA');
	for (i=0;i<textars.length;i++) {
			textars[i].onfocus=function(){
				this.style.backgroundColor='rgb(255, 250, 234)'
			};
			textars[i].onblur=function(){
				this.style.backgroundColor='#fff';
			};			
	}	
}

function forget_password(){
	$("#loginform").hide()
	$("#send_password").show()
	$("#send_password_label").show()
	
	document.getElementById('data_for_password').focus();
}

function confirmArticleDeleting() {
	str="Do you really want to delete this page?";
	return confirm(str);
}
 