function search_focus(input) {
	input.style.color='black';
	if (input.value=='Titel / Författare') {
		input.value='';
	}
}

function confirm_submit(question)
{
	var agree=confirm(question);
	if (agree)
	    return true;
	else
	    return false;
}
