/////////////////////////////////////////////////////////////////////////////////
// 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';
}

/////////////////////////////////////////////////////////////////////////////////
// IFRAME RESIZE
/////////////////////////////////////////////////////////////////////////////////
function resize_iframe(iframe) {
    // This function resizes an IFrame object
    // to fit its content.
    // The IFrame tag must have a unique ID attribute.
	document.getElementById(iframe.id).height = document.getElementById(iframe.id).scrollHeight + "px";
}
