function confirmContestInstrument()
{
	var instrumentBox = document.ic_entry.instrument;
	var user_input = instrumentBox.options[instrumentBox.selectedIndex].text;

        var agree=confirm("Your image was made using the\n    " + user_input + ".\nIs this correct?");
        if (agree)
                return true ;
        else
                return false ;
}

