///////////////////////////////////
// Utils v1.1
///////////////////////////////////

function getEl(id) {
	return document.getElementById(id);
}

function getValue(id) {
	return getEl(id).value;
}

function setValue(id,val) {
	getEl(id).value = val;
}

function show(id) {
	getEl(id).style.display = 'block';
}

function hide(id) {
	getEl(id).style.display = 'none';
}


///////////////////////////////////
// Debug functions

function switchBorder(id)
{
	var t = getEl(id);
	if(t.border != 0)
		t.border = 0;
	else
		t.border = 1;
}