<!--
var blnChecked=false
function verify(pw) {
	var inpw;
	inpw=pw.toLowerCase();
	if ( (inpw.indexOf('fuck')  != -1 ||
	inpw.indexOf('ignorant')  != -1 ||
	inpw.indexOf('insane')  != -1 ||
    inpw.indexOf('intoxicated')  != -1 ||
	inpw.indexOf('shit')  != -1 ||
	inpw.indexOf('head')  != -1) )
	{
	blnChecked=true;
	}
}
function change(color){
	var el=event.srcElement
	if (el.tagName=="INPUT"&&el.type=="button")
	event.srcElement.style.backgroundColor=color
}
function jumpto2(url){
	window.location=url
}
//-->