/* search.js v.2.10
 * written: Sasaki Atsushi <mailto:hm7@mac.com>
 * last modified: 2006-01-29T00:43:39+09:00
 */

var loc = window.location.href;

document.open();
document.writeln('<div class="search" id="s">');
document.writeln('<form action="http://www.google.com/search" method="get" name="google">');
document.writeln('<input type="text" name="q" size="40" value="Input some words here to search!" tabindex="1" accesskey="q" onfocus="d(this)" onblur="ob(this)" />');
document.writeln('<input type="hidden" name="hl" value="ja" />');
document.writeln('<input type="hidden" name="hq" value="inurl:homepage1.nifty.com/hm7" />');
document.writeln('<input type="hidden" name="filter" value="0" />');
document.writeln('<input type="hidden" name="ie" value="iso-2022-jp" />');
document.writeln('<input type="hidden" name="oe" value="iso-2022-jp" />');
document.writeln('<input type="submit" value="Google!" tabindex="2" accesskey="g" />&nbsp;<input type="button" value="Close" accesskey="c" onclick="hf()" onkeypress="hf()">');
document.writeln('</form>');
document.writeln('</div>');
document.close();

function sf() {
	f = document.getElementById('s');
	// q = document.getElementByName('q');
	f.style.display = 'block';
	document.google.q.focus();
	return false;
}

function hf() {
	f = document.getElementById('s');
	f.style.display = 'none';
	return false;
}

function d(q) {
	q.style.color = 'Black';
	q.value = '';
}

function ob(q) {
	q.style.color = '#666';
	if(q.value == '') {
		q.value = 'Input some words here to search!';	
	}
}

// EOF
