function focusinput(value, textfield){
	var myinput = document.getElementById(textfield);

	if (myinput.value==value)
	{
		myinput.value="";
    //    myinput.style.color='#333333';
	}

}
function focusoutinput(value,textfield){
	var myinput = document.getElementById(textfield);

	if (myinput.value=="")
	{
		myinput.value=value;
  //      myinput.style.color='#999999';
	}
}

function ackapa(id) {
var diq = document.getElementById(id).style;
diq.display=(diq.display=="none") ? "" : "none";
}


function show(a,b) {
document.getElementById(a).style.display = "block";
document.getElementById(b).style.display = "none";
}

