function adat(html)
{
	ujablak = open(html,"uj_ablak3", "width=850, height=700, status=no, toolbar=no, menubar=no, scrollbars=yes, location=no, alwaysRaised=yes");
}


function InputLoad(val,text,id,typ) {
 var val = document.getElementById(val);
 if(id==0 && val.value=="") {
  val.type="text";
  val.style.fontStyle="italic";
  val.style.color="#999999";
  val.value=text;
 } else if(id==1 && val.value==text) {
  val.value="";
  val.style.fontStyle="normal";
  val.style.color="#000000";
  val.type=typ;
 }
}
function SelectLoad(val) {
 if(val.value=='') {
  val.style.fontStyle="italic";
  val.style.color="#999999";
  val.options[0].style.fontStyle="italic";
  val.options[0].style.color="#999999";
  for(var a = 1; a < val.length; a++) {
   val.options[a].style.fontStyle="normal";
   val.options[a].style.color="#000000";
  }
 } else {
  val.style.fontStyle="normal";
  val.style.color="#000000";
  val.options[0].style.fontStyle="italic";
  val.options[0].style.color="#999999";
  for(var a = 1; a < val.length; a++) {
   val.options[a].style.fontStyle="normal";
   val.options[a].style.color="#000000";
  }
 }
}
