defbtn="";
function imgInit(name) {
 if (document.images) {
  if (name!="") document.images[name].src="img/"+name+"_f2.jpg";
  defbtn=name;
 }
}
function msover(name) {
 if ((document.images)&&(name!=defbtn)){
  document.images[name].src="img/"+name+"_f2.jpg";
 }
}
function msout(name) {
 if ((document.images)&&(name!=defbtn)){
  document.images[name].src="img/"+name+".jpg";
 }
}

function ctrlFocus(obj) {
	if (obj.value==obj.defaultValue) {
		obj.value="";
		return true;
	}
}
function ctrlBlur(obj) {
	if (obj.value=="") {
		obj.value=obj.defaultValue;
		return true;
	}
}
function winOpenImg(title,img,width,height) {
	msg=window.open("","msg","height="+height+",width="+width+",left=10,top=10");
	msg.document.write("<html><title>"+title+"</title>");
	msg.document.write("<body bottommargin='0' topmargin='0' leftmargin='0' rightmargin='0' bgcolor='white'>");
	msg.document.write("<img src="+img+" border='1' onClick=window.close()>");
	msg.document.write("</body></html>");
}