



// forms 

var ser1 = document.getElementById("login")
if (ser1) {
ser1.onclick = new Function ("noful('login','ser1')")
ser1.onblur = new Function ("ful('login','ser1')")
}
	
function noful(val,elnm) {
if (eval(elnm+'.value') == val) {eval(elnm+'.value= ""') }
}

function ful(val,elnm) {
if (eval(elnm+'.value') == '') {eval(elnm+'.value= val')}
}

var ser2 = document.getElementById("password")
if (ser2) {
ser2.onclick = new Function ("noful('password','ser2')")
ser2.onblur = new Function ("ful('password','ser2')")
}
	
function noful(val,elnm) {
if (eval(elnm+'.value') == val) {eval(elnm+'.value= ""') }
}

function ful(val,elnm) {
if (eval(elnm+'.value') == '') {eval(elnm+'.value= val')}
}

