function removeText(field) {
	field.value = '';
}

function popUp(url) {
	javascript:void(window.open(url, 'popup', 'width=500,height=450,resizable=yes,scrollbars=yes'))
}
function getURL( url ) {
	window.location.href = url;
}

function meny( celle, mouseOver, bgStyle) {
	if ( mouseOver ) {
		switch ( bgStyle ) {
			case 1:
				celle.style.backgroundColor = '#CC0000';
				break;
		}
	} else {
		switch ( bgStyle ) {
			case 1:
				celle.style.backgroundColor = '#003300';
				break;
		}
	}
}
