//-----------------------------------------------------------------------------
// Redirect to the top page
//-----------------------------------------------------------------------------
// return value: none
//-----------------------------------------------------------------------------
function goTop( ) {

	window.setTimeout( "window.location.href='http://www.shomei.tv/'", 3000 );

}


//-----------------------------------------------------------------------------
// Count the number of characters
//-----------------------------------------------------------------------------
// return value: the number of characters (int)
//-----------------------------------------------------------------------------
function countChar( obj ) {

	var s;
	s = obj.value.replace( /\r\n/m, "\n" );
	return s.length;

}

