function commitSearch( instrType, instrQuery ) {
    var objForm = document.forms["frmSubmit"];
    with(objForm) {
        searchby.value = instrType;
        query.value = instrQuery;
        submit();
    }
}

function searchHelp() {
	var iMyWidth;
	var iMyHeight;
//	iMyWidth = (window.screen.width/2) - (122 + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
//	iMyHeight = (window.screen.height/2) - (27 + 50); //half the screen height minus half the new window height (plus title and status bars).
	iMyWidth = 200;
	iMyHeight = 125;
	var helpWin = window.open("/shop/help/search.aspx", "Hjälp","Height=410,Width=350,resizable=yes,scrollbars=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
	helpWin.focus();
}

function search() {
	document.frmSearch.submit();
}
