﻿function fastSearch(fieldId) {
	var query = document.getElementById(fieldId).value;
	document.location.href='/search?q='+query;
}

function executeOnKeyDown(fieldId, e) {
	var code;
	if (!e) var e = window.event;
	if (e.keyCode) code = e.keyCode;
	else if (e.which) code = e.which;
	var character = String.fromCharCode(code);
	if(code==13){
		fastSearch(fieldId);
	}
}