// Popupvinduer
function visstortbillede(billede,hoejde,bredde) {
	window.open('/stortbillede.php?pic='+billede,'_blank','width='+bredde+',height='+hoejde+',toolbar=no,scrollbars=no')	
}

function popupvindue(side,bredde,hoejde) {
	window.open(side,'_blank','width='+bredde+',height='+hoejde+',toolbar=no,scrollbars=yes')	
}

// Alt godt til tagwallen
var field;

function hlfield(item) {
	item.style.background = '#666666';
	item.style.color = '#ffffcc';
	item.style.border = '1px solid silver';
}

function dsfield(item) {
	item.style.background = '#3B3B45';
	item.style.color = 'white';
	item.style.border = '1px solid #3B3B45';
	item.style.borderBottomColor = 'gray';
}

function msover_field(item) {
	if (field != 1) {
		hlfield(item);
	}
}

function msout_field(item) {
	if (field != 1) {
		dsfield(item);
	}
}

function fieldfocus(item) {
	hlfield(item);
	field = 1;
}

function fieldblur(item) {
	dsfield(item);
	field = 0;
}

// Lidt JS til nogen fancy knapper
function over_yellow_button(item) {
	item.style.border = '1px solid silver';
	item.style.background = '#666666';
}

function out_yellow_button(item) {
	item.style.border = '1px solid silver';
	item.style.background = '#838383';
}

function down_yellow_button(item) {
	item.style.border = '1px solid #0A246A';
	item.style.background = '#8592B5';
}
