function init() {
	// Browser Sniffing.  Requires sniffer.js
	if (is_gecko) {
		// mozilla / netscape specific stuff here
	} else if (is_ie5up) {
		// Internet Explorer stuff here
	} else {
		// Any other browsers
	}
	document.all['Query'].focus();
}

function init_userdetails() {
	document.all['Email'].focus();
}

function goto(url) {
        location.href = url;
}

window.status = 'Converting Business Cards into Business';