// JavaScript Document
if (parent.frames.length > 0) {
	parent.location.href = location.href
}
function testSubmit(value, e) {
		if(!document.all) {
			thisKey = e.which
		} else {
			thisKey = event.keyCode
		}
		if (thisKey == 13) {
			if (value != "") {
				document.forms[value].submit()
			} else {
				goSearch()
			}
		}
	}