function toggleKeyword(t) {
	if (t == 'in') {
		if (document.tattooform.k.value == 'Enter Keywords') {
			document.tattooform.k.value = '';
			//document.tattooform.k.className = 'keywordBoxPlain'
		}
	}
	else {
		if (document.tattooform.k.value == '') {
			document.tattooform.k.value = 'Enter Keywords'
			//document.tattooform.k.className = 'keywordBoxEnter'
		}
	}
}
function checkSuggest(){
	if (document.tattooform.v.value != '')
		{
			checkSubmit();
		}
}


function checkSubmit() {
	if (document.tattooform.k.value == 'Enter Keywords')
		{
		document.tattooform.k.value = '';
		}
	if (document.tattooform.v.value != '')
		{
		document.tattooform.k.value = document.tattooform.v.value;
		}
	document.tattooform.submit();

}
function changeclass(e,c){document.getElementById(e).className=c;}