/////////////////////////////////////////////////////////////////////////////////
// CHECK FOCUS/BLUR
/////////////////////////////////////////////////////////////////////////////////
function check_focus(i,v) {
	if (i.value == v) {
		i.value = "";
	}
}
function check_blur(i,v) {
	if (i.value == "") {
		i.value = v;
	}
}

/////////////////////////////////////////////////////////////////////////////////
// SET CLASS
/////////////////////////////////////////////////////////////////////////////////
function set_class(i,c) {
	document.getElementById(i).className = c;
	document.getElementById(i).setAttribute('class',c);
}

/////////////////////////////////////////////////////////////////////////////////
// POPUP
/////////////////////////////////////////////////////////////////////////////////
function show_popup(i) {
	document.getElementById('popup_div'+i).style.display = 'block';
}
function close_popup(i) {
	document.getElementById('popup_div'+i).style.display = 'none';
}
